fix: jinja syntax error
This commit is contained in:
parent
7d950a4b51
commit
9d7e87530d
1 changed files with 2 additions and 2 deletions
|
@ -28,6 +28,6 @@ default_zone:
|
|||
zones:
|
||||
{% for zone, options in postfix_mtastsresolver_zones.items() -%}
|
||||
{{ zone }}:
|
||||
strict_testing: {{ options.strict_testing | default postfix_mtastsresolver_defaultzone_stricttesting | ternary('true', 'false') }}
|
||||
timeout: {{ options.timeout | default postfix_mtastsresolver_defaultzone_timeout }}
|
||||
strict_testing: {{ options.strict_testing | default(postfix_mtastsresolver_defaultzone_stricttesting) | ternary('true', 'false') }}
|
||||
timeout: {{ options.timeout | default(postfix_mtastsresolver_defaultzone_timeout) }}
|
||||
{% endfor -%}
|
||||
|
|
Loading…
Add table
Reference in a new issue