xoxys.postfix_relay/tasks/install.yml
Robert Kaussow 9e8d4da701
All checks were successful
the build was successful
install with state=present instead of latest
2019-01-09 20:56:03 +01:00

13 lines
238 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