fedora-ansible/tasks/postfix_basic.yml

26 lines
728 B
YAML
Raw Normal View History

- name: install postfix
action: yum pkg=postfix state=present
tags:
- postfix
2013-05-21 22:15:34 +02:00
- packages
- name: /etc/postfix/main.cf
action: copy src={{ item }} dest=/etc/postfix/main.cf
with_first_found:
- "{{ postfix_maincf }}"
- "{{ roles }}/base/files/postfix/main.cf.{{ ansible_fqdn }}"
- "{{ roles }}/base/files/postfix/main.cf.{{ inventory_hostname }}"
- "{{ roles }}/base/files/postfix/main.cf.{{ host_group }}"
- "{{ roles }}/base/files/postfix/main.cf.{{ postfix_group }}"
2014-06-16 03:10:58 +02:00
- "{{ roles }}/base/files/postfix/main.cf/main.cf"
notify:
2012-11-19 23:06:46 +01:00
- restart postfix
tags:
- postfix
- config
2012-11-19 23:06:46 +01:00
- name: enable postfix to start
action: service name=postfix state=running enabled=true
2013-05-21 22:15:34 +02:00
tags:
- service