11 lines
207 B
Text
11 lines
207 B
Text
|
{% for key, value in postfix_config.items() %}
|
||
|
{% if value == True %}
|
||
|
{{ key }} = yes
|
||
|
{% else %}
|
||
|
{% if value == False %}
|
||
|
{{ key }} = no
|
||
|
{% else %}
|
||
|
{{ key }} = {{ value }}
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|