|
@ -86,14 +86,17 @@ |
|
|
follow: yes |
|
|
follow: yes |
|
|
|
|
|
|
|
|
- name: Add local dnsmasq to resolv.conf |
|
|
- name: Add local dnsmasq to resolv.conf |
|
|
lineinfile: |
|
|
|
|
|
line: "nameserver {{item}}" |
|
|
|
|
|
|
|
|
blockinfile: |
|
|
dest: "{{resolvconffile}}" |
|
|
dest: "{{resolvconffile}}" |
|
|
|
|
|
block: |- |
|
|
|
|
|
{% for item in nameserverentries -%} |
|
|
|
|
|
nameserver {{ item }} |
|
|
|
|
|
{% endfor %} |
|
|
state: present |
|
|
state: present |
|
|
insertafter: "^search.*$" |
|
|
|
|
|
|
|
|
create: yes |
|
|
backup: yes |
|
|
backup: yes |
|
|
follow: yes |
|
|
follow: yes |
|
|
with_items: "{{nameserverentries}}" |
|
|
|
|
|
|
|
|
marker: "# Ansible nameservers {mark}" |
|
|
|
|
|
|
|
|
- name: Add options to resolv.conf |
|
|
- name: Add options to resolv.conf |
|
|
lineinfile: |
|
|
lineinfile: |
|
|