ansible-playbooks/dns/dns-master.yml

15 lines
456 B
YAML

---
- user: root
host: dns-master
gather_facts: no
tasks:
- name: update dns-infrastructure git repo
git: repo=git@bitbucket.org:staticsafe/dns-infrastructure.git dest=/etc/namedb/dns-infrastructure update=yes
- name: ensure permission correctness
shell: chown -R bind:bind /etc/namedb/dns-infrastructure
notify:
- reload nameserver daemon
handlers:
- name: reload nameserver daemon
action: shell service named reload