Files
ansible-bind9-role/templates/named.conf.dlz.j2
Daniel Akulenok 71abdaa2e4 style: Standardize indentation across all templates
- Update indentation in controls, DLZ, and DNSSEC policy templates
- Normalize spacing in options and logging templates
- Ensure consistent formatting throughout role
2026-01-27 23:18:40 +01:00

10 lines
294 B
Django/Jinja

{% macro dlz(dlzs) %}
{% for dlz in dlzs if dlzs is iterable %}
dlz "{{ dlz.name }}" {
{% filter indent(bind9_config_indent, true) %}
{{ ('database "' + simple_item_list(dlz.database) + '";') }}
{{ functions.boolean_option('search', dlz.search) }}
{% endfilter %}
};
{% endfor %}
{% endmacro %}