ansible/tasks/postfix_basic.yml

25 lines
608 B
YAML

- name: install postfix
action: yum pkg=postfix state=installed
tags:
- postfix
- packages
- name: /etc/postfix/main.cf
action: copy src=$item dest=/etc/postfix/main.cf
with_first_found:
- $postfix_maincf
- $files/postfix/main.cf.${ansible_fqdn}
- $files/postfix/main.cf.${inventory_hostname}
- $files/postfix/main.cf.${host_group}
- $files/postfix/main.cf.${postfix_group}
- $files/postfix/main.cf
notify:
- restart postfix
tags:
- postfix
- config
- name: enable postfix to start
action: service name=postfix state=running enabled=true
tags:
- service