You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
476 B
YAML
20 lines
476 B
YAML
---
|
|
|
|
- name: Configure zone {{ domain }}
|
|
template:
|
|
src: zone.conf
|
|
dest: "{{ configuration_file }}"
|
|
owner: root
|
|
group: "{{ dns_user }}"
|
|
mode: "u=rw,g=r,o=r"
|
|
validate: "named-checkconf %s"
|
|
notify: reload bind9
|
|
|
|
- name: Include configuration file of zone {{ domain }}
|
|
lineinfile:
|
|
path: "{{ dns_zones_configuration }}"
|
|
state: present
|
|
line: "include \"{{ configuration_file }}\";"
|
|
validate: "named-checkconf %s"
|
|
notify: reload bind9
|