13 lines
354 B
YAML
13 lines
354 B
YAML
---
|
|
- user: root
|
|
hosts: dns-slaves
|
|
gather_facts: no
|
|
tasks:
|
|
- name: update dns-infrastructure git repo
|
|
git: repo=git@bitbucket.org:staticsafe/dns-infrastructure.git dest=/etc/bind/dns-infrastructure update=yes
|
|
notify:
|
|
- reload nameserver daemon
|
|
handlers:
|
|
- name: reload nameserver daemon
|
|
action: shell service bind9 reload
|