Merge "Stop NetworkManager from overriding resolv.conf"

This commit is contained in:
Zuul 2023-12-12 12:58:49 +00:00 committed by Gerrit Code Review
commit 48176b9b3d
2 changed files with 22 additions and 0 deletions

View File

@ -4,6 +4,22 @@
when: resolv_is_managed | bool
become: True
- name: Ensure NetworkManager DNS config is present only if required
become: true
community.general.ini_file:
path: /etc/NetworkManager/NetworkManager.conf
section: main
option: "{{ item.option }}"
value: "{{ item.value }}"
state: "{{ 'present' if resolv_is_managed | bool else 'absent'}}"
loop:
- option: dns
value: none
- option: rc-manager
value: unmanaged
when:
- ansible_facts.os_family == "RedHat" and ansible_facts.distribution_major_version == "9"
- name: Configure network interfaces (RedHat)
import_role:
name: MichaelRigart.interfaces

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes a bug where NetworkManager would overwrite resolv.conf when
``resolv_is_managed`` is set to ``True``.
`LP#2044537 <https://launchpad.net/bugs/2044537>`__