mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-15 17:20:21 +00:00
Allow inclusion of arbitrary options
This commit is contained in:
parent
1199b761a6
commit
c019d1e946
1 changed files with 6 additions and 1 deletions
|
@ -17,5 +17,10 @@ options {
|
|||
auth-nxdomain no; # conform to RFC1035
|
||||
{% if salt['pillar.get']('bind:config:ipv6', 'False') %}
|
||||
listen-on-v6 { {{ salt['pillar.get']('bind:config:ipv6_listen', 'any') }}; };
|
||||
{% endif %}
|
||||
{% endif -%}
|
||||
|
||||
{# Allow inclusion of arbitrary statements -#}
|
||||
{% for statement, value in salt['pillar.get']('bind:config:options', {}).iteritems() -%}
|
||||
{{ statement }} {{ value}}
|
||||
{% endfor -%}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue