ansible-roles/postfix/tasks/main.yml
Jérémy Lecour 2ed77c60f0 Improve Ansible syntax
replace « x | changed » by « x is changed »
add explicit « bool » filter
use « length » filter instead of string comparison
2021-05-09 23:06:42 +02:00

13 lines
223 B
YAML

---
- include: common.yml
- include: minimal.yml
when: not (postfix_packmail | bool)
- include: packmail.yml
when: postfix_packmail | bool
- include: slow_transport.yml
when: postfix_slow_transport_include | bool