15 lines
457 B
YAML
15 lines
457 B
YAML
---
|
|
- user: root
|
|
hosts: 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
|