- Update indentation in controls, DLZ, and DNSSEC policy templates - Normalize spacing in options and logging templates - Ensure consistent formatting throughout role
8 lines
264 B
Django/Jinja
8 lines
264 B
Django/Jinja
{% macro dyndb(dyndbs) %}
|
|
{% for dyndb in dyndbs if dyndbs is iterable %}
|
|
dyndb {{ dyndb.name }} "{{ dyndb.driver }}" {
|
|
{% filter indent(bind9_config_indent, true) %}
|
|
{{ functions.simple_item_list(dyndb.parameters) -}}
|
|
{% endfilter %}};
|
|
{% endfor %}
|
|
{% endmacro %} |