2017-01-07 15:41:21 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install powerdns
|
2020-11-13 21:34:04 +01:00
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- pdns-server
|
|
|
|
- pdns-recursor
|
2017-01-07 15:41:21 +01:00
|
|
|
|
|
|
|
- name: Create zone directory
|
|
|
|
file: path=/etc/powerdns/bind/ state=directory
|
|
|
|
|
|
|
|
- name: Configure powerdns
|
2018-04-22 12:07:42 +02:00
|
|
|
template: src={{ item }}.j2 dest=/etc/powerdns/{{ item }}
|
2017-01-07 15:41:21 +01:00
|
|
|
notify: Restart powerdns
|
|
|
|
with_items:
|
2019-03-09 18:38:07 +01:00
|
|
|
- pdns.conf
|
|
|
|
- recursor.conf
|
|
|
|
- bindbackend.conf
|
|
|
|
- bind/23.172.in-addr.arpa.zone
|
|
|
|
- bind/binary.kitchen.zone
|
2017-01-07 15:41:21 +01:00
|
|
|
|
|
|
|
- name: Start the powerdns services
|
2018-04-22 12:07:42 +02:00
|
|
|
service: name={{ item }} state=started enabled=yes
|
2017-01-07 15:41:21 +01:00
|
|
|
with_items:
|
2019-03-09 18:38:07 +01:00
|
|
|
- pdns
|
|
|
|
- pdns-recursor
|