14 lines
269 B
YAML
14 lines
269 B
YAML
|
- name: configure powerdns
|
||
|
template:
|
||
|
src: powerdns.conf
|
||
|
dest: /etc/powerdns/pdns.d/config.conf
|
||
|
notify:
|
||
|
- restart pdns
|
||
|
|
||
|
- name: disable powerdns bind backend
|
||
|
file:
|
||
|
path: /etc/powerdns/pdns.d/bind.conf
|
||
|
state: absent
|
||
|
notify:
|
||
|
- restart pdns
|