13 lines
372 B
Django/Jinja
13 lines
372 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
|
|
{% if postfix_default_helo_checks is defined %}
|
|
{% for check in postfix_default_helo_checks %}
|
|
{{ "%-30s %s" | format(check.client, check.state) }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if postfix_helo_checks is defined %}
|
|
{% for check in postfix_default_helo_checks %}
|
|
{{ "%-30s %s" | format(check.client, check.state) }}
|
|
{% endfor %}
|
|
{% endif %}
|