- name: lineinfile: dest: '/etc/hosts' line: '{{ ansible_default_ipv4.address }} {{ ansible_hostname }}' regexp: '^\s*\S* {{ ansible_hostname }}' delegate_to: gandalf2 register: hosts - name: dnsmasq force hosts reload command: "killall -HUP dnsmasq" delegate_to: gandalf2 when: hosts.changed