xoxys.postfix_relay/tasks/install.yml

14 lines
258 B
YAML
Raw Normal View History

2017-05-18 23:24:15 +02:00
---
2017-12-10 17:12:11 +01:00
- name: Install postfix mta
2018-07-06 23:13:11 +02:00
block:
- name: Install required packages
package:
name: "{{ item }}"
state: present
with_items:
- postfix
- cyrus-sasl-plain
- mailx
2018-07-06 23:13:11 +02:00
become: True
become_user: root