agaric-coop/box/provisioning/roles/geerlingguy.postfix/tasks/main.yml

11 lines
351 B
YAML

---
- name: Ensure postfix is installed (RedHat).
yum: name=postfix state=installed
when: ansible_os_family == 'RedHat'
- name: Ensure postfix is installed (Debian).
apt: name=postfix state=installed
when: ansible_os_family == 'Debian'
- name: Ensure postfix is started and enabled at boot.
service: name=postfix state=started enabled=yes