12 lines
169 B
Plaintext
12 lines
169 B
Plaintext
|
#
|
||
|
# {{ ansible_managed }}
|
||
|
#
|
||
|
|
||
|
{% for acl in bind9_acls %}
|
||
|
acl "{{ acl.name }}" {
|
||
|
{% for permission in acl.permissions %}
|
||
|
{{ permission }};
|
||
|
{% endfor %}
|
||
|
};
|
||
|
|
||
|
{% endfor %}
|