Skip to content

Commit

Permalink
Merge pull request #227 from stackhpc/upstream/zed-2023-12-15
Browse files Browse the repository at this point in the history
Synchronise zed with upstream
  • Loading branch information
priteau authored Dec 15, 2023
2 parents 7f5b649 + fde242b commit 0a5ed30
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ansible/roles/network-redhat/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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>`__

0 comments on commit 0a5ed30

Please sign in to comment.