templier-ansible/roles/bind/templates/named.conf.local.j2
Yohann D'ANELLO b742395cd4
Fix comments for vim
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
2021-03-18 00:46:38 +01:00

19 lines
406 B
Django/Jinja

{{ ansible_header | comment(decoration='//') }}
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
{% for domain in bind.domains %}
zone "{{ domain.name }}" {
type master;
file "/var/lib/bind/{{ domain.name }}/db";
notify yes;
allow-transfer { {{ domain.slave }}; };
};
{% endfor %}