Add postfix non mailhost task

pull/17/head
otthorn 3 years ago
parent a9b03aed82
commit f08b11445d

@ -0,0 +1,14 @@
---
- name: Install postfix
apt:
name: postfix
update_cache: true
register: result
retries: 3
until: result is succeeded
- name: Configure postfix
template:
src: main.cf.j2
dest: /etc/postfix/main.cf
notify: restart postfix
Loading…
Cancel
Save