mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-17 10:10:26 +00:00
27 lines
698 B
Text
27 lines
698 B
Text
//
|
|
// 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 key,args in salt['pillar.get']('bind:configured_zones', {}).iteritems() -%}
|
|
{%- set file = salt['pillar.get']("bind:available_zones:" + key + ":file") %}
|
|
{%- set masters = salt['pillar.get']("bind:available_zones:" + key + ":masters") %}
|
|
zone "{{ key }}" {
|
|
type {{ args['type'] }};
|
|
file "data/{{ file }}";
|
|
{% if args['type'] == "master" -%}
|
|
{% if args['notify'] -%}
|
|
notify yes;
|
|
{% else -%}
|
|
notify no;
|
|
{%- endif -%}
|
|
{% else -%}
|
|
notify no;
|
|
masters { {{ masters }} };
|
|
{%- endif %}
|
|
};
|
|
{% endfor %}
|
|
|