refactor: Remove macro usage from HTTP configuration template

This commit is contained in:
Daniel Akulenok
2024-05-14 13:47:03 +02:00
committed by Daniel Akulenok
parent 91c2c611db
commit fbe5eaaddd
2 changed files with 2 additions and 5 deletions

View File

@@ -1,8 +1,6 @@
{% macro dyndb(dyndbs) %}
{% for dyndb in dyndbs if dyndbs is iterable %}
{% for dyndb in item.dyndb if item.dyndb is iterable %}
dyndb {{ dyndb.name }} "{{ dyndb.driver }}" {
{% filter indent(bind9_config_indent, true) %}
{{ functions.simple_item_list(dyndb.parameters) -}}
{% endfilter %}};
{% endfor %}
{% endmacro %}