Browse Source

add timeout options to resolv.conf

pull/70/head
Smaine Kahlouch 9 years ago
parent
commit
d3a8584212
1 changed files with 13 additions and 0 deletions
  1. 13
      roles/dnsmasq/tasks/main.yml

13
roles/dnsmasq/tasks/main.yml

@ -80,6 +80,19 @@
follow: yes
with_items: groups['kube-master']
- name: Add options to resolv.conf
lineinfile:
line: options {{ item }}
dest: "{{resolvconffile}}"
state: present
regexp: "^options.*{{ item }}$"
insertafter: EOF
backup: yes
follow: yes
with_items:
- timeout:5
- attempts:2
- name: disable resolv.conf modification by dhclient
copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate mode=u+x backup=yes
when: ansible_os_family == "Debian"

Loading…
Cancel
Save