Only disable stub resolver for control machines
This commit is contained in:
parent
65be11b3f1
commit
0b539463e9
|
@ -16,21 +16,24 @@
|
|||
owner: root
|
||||
mode: u=rw,g=r,o=r
|
||||
|
||||
- name: Set /etc/resolv.conf symlink
|
||||
ansible.builtin.file:
|
||||
path: /etc/resolv.conf
|
||||
src: /run/systemd/resolve/resolv.conf
|
||||
owner: root
|
||||
force: true
|
||||
state: link
|
||||
|
||||
- name: Disable systemd-resolved stub resolver
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/systemd/resolved.conf
|
||||
regexp: '^#?DNSStubListener='
|
||||
line: 'DNSStubListener=no'
|
||||
state: present
|
||||
notify: Restart systemd-resolved
|
||||
when: hostname in groups['control_infra']
|
||||
block:
|
||||
- name: Set /etc/resolv.conf symlink
|
||||
ansible.builtin.file:
|
||||
path: /etc/resolv.conf
|
||||
src: /run/systemd/resolve/resolv.conf
|
||||
owner: root
|
||||
force: true
|
||||
state: link
|
||||
|
||||
- name: Comment out DNSStubListener
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/systemd/resolved.conf
|
||||
regexp: '^#?DNSStubListener='
|
||||
line: 'DNSStubListener=no'
|
||||
state: present
|
||||
notify: Restart systemd-resolved
|
||||
|
||||
- name: Install packages via apt
|
||||
ansible.builtin.apt:
|
||||
|
|
Loading…
Reference in a new issue