xoxys.postfix_relay/tasks/install.yml
Robert Kaussow c85b030352
All checks were successful
continuous-integration/drone/push Build is passing
fix notification; add missing become_user
2019-01-13 23:39:38 +01:00

14 lines
258 B
YAML

---
- name: Install postfix mta
block:
- name: Install required packages
package:
name: "{{ item }}"
state: present
with_items:
- postfix
- cyrus-sasl-plain
- mailx
become: True
become_user: root