mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 01:30:22 +00:00
15 lines
348 B
Text
15 lines
348 B
Text
{% if ipv6 %}
|
|
listen-on-v6 { {{ ipv6_listen }}; };
|
|
{% endif %}
|
|
|
|
{#
|
|
{% for dns_zone in pillar['dns_zones'] %}
|
|
zone "{{ dns_zone['zone'] }}" {
|
|
type {{ dns_zone['type'] }};
|
|
file "{{ dns_zone['file'] }}";
|
|
{% if dns_zone['type'] == "slave" %}
|
|
masters { {{ dns_zone['masters'] }} };
|
|
{% endif %}
|
|
};
|
|
{% endfor %}
|
|
#}
|