aboutsummaryrefslogtreecommitdiff
path: root/roles/bind/templates/named.conf.local.j2
blob: 94428f12c64f6ad13bf951ffbeddef03cc276ca4 (plain)
1
2
3
4
5
6
7
8
9
10
// vi: ft=named
// This file is managed by Ansible. Do not change.

{% for zone in bind_zones %}
zone "{{ zone }}" {
	type master;
	file "/etc/bind/zonefiles/{{ zone }}";
};

{% endfor %}