10 lines
283 B
Django/Jinja
10 lines
283 B
Django/Jinja
### {{ ansible_managed }}
|
|
|
|
{% if postfix_transport_relay is defined %}
|
|
{% for transport in postfix_transport_relay %}
|
|
{% if transport.comment is defined %}
|
|
{{ transport.comment }}
|
|
{% endif %}
|
|
{{ "%-50s %s" | format(transport.destination, transport.relay) }}
|
|
{% endfor %}
|
|
{% endif %}
|