Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
312 B

  1. - name:
  2. lineinfile:
  3. dest: '/etc/hosts'
  4. line: '{{ ansible_default_ipv4.address }} {{ ansible_hostname }}'
  5. regexp: '^\s*\S* {{ ansible_hostname }}'
  6. delegate_to: gandalf2
  7. register: hosts
  8. - name: restart dnsmasq
  9. shell: "/etc/init.d/dnsmasq restart"
  10. delegate_to: gandalf2
  11. when: hosts.changed