ansible-playbooks/dns/dns-configupdate.yml

13 lines
402 B
YAML
Raw Normal View History

---
- user: root
hosts: dnsservers
gather_facts: no
tasks:
- name: update dns-infrastructure git repo
2014-04-23 13:42:13 +00:00
git: repo=git@bitbucket.org:staticsafe/dns-infrastructure.git dest=/etc/bind/dns-infrastructure version=debian-master update=yes accept_hostkey=yes
notify:
- reload nameserver daemon
handlers:
2014-01-11 18:02:07 +00:00
- name: reload nameserver daemon
2014-01-11 18:35:01 +00:00
action: service name=bind9 state=reloaded