ansible-ffibk/roles/service-bind-slave/templates/named.conf.j2
Tobias Hachmer 63ca114c95 Migrate nested dictionary meshes into a list of dictionaries
- migrate dictionary `ipv6` into two simple lists
 - migrate dictionary `forward_zones` into a list
2017-10-06 22:58:00 +02:00

12 lines
287 B
Django/Jinja

//
// {{ ansible_managed }}
//
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.default-zones";
include "/etc/bind/named.conf.logging";
{% for mesh in meshes %}
include "/etc/bind/named.conf.{{ mesh.site_code }}";
{% endfor %}
include "/etc/bind/named.conf.icvpn";