projects
/
ansible.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix apache HTTP2HTTPS redirect config
[ansible.git]
/
roles
/
unbound
/
tasks
/
main.yml
diff --git
a/roles/unbound/tasks/main.yml
b/roles/unbound/tasks/main.yml
index d8d03e3dd0f84f98a1d6ebf17f2ca9fa93dc2406..f3aacac435c6509c6abb24054a4b6ce42e27f3b1 100644
(file)
--- a/
roles/unbound/tasks/main.yml
+++ b/
roles/unbound/tasks/main.yml
@@
-32,8
+32,11
@@
src: files/dhclient.conf
- name: configure system DNS
copy:
src: files/dhclient.conf
- name: configure system DNS
copy:
- dest: /etc/resolv.conf
- content: "nameserver 127.0.0.2\n"
+ dest: "{{ item }}"
+ content: "nameserver 127.0.0.2\noptions trust-ad\noptions edns0\n"
+ loop:
+ - /etc/resolv.conf.unbound
+ - /etc/resolv.conf
# some providers need extra hacks to make our DNS persistent
- name: install DNS-fix cronjob
template:
# some providers need extra hacks to make our DNS persistent
- name: install DNS-fix cronjob
template: