small refactoring

This commit is contained in:
Robert Kaussow 2017-12-10 17:12:11 +01:00
parent b2ab14c31a
commit 9d18d6c3c3
3 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
---
- name: restart postfix
- name: Restart postfix
service:
name: postfix
state: restarted

View File

@ -1,5 +1,5 @@
---
- name: configure postfix
- name: Configure postfix
template:
src: 'etc/postfix/main.cf.j2'
dest: '/etc/postfix/main.cf'
@ -8,7 +8,7 @@
mode: 0644
notify: postfix_restart
- name: create sasl
- name: Create sasl
template:
src: 'etc/postfix/sasl_passwd.j2'
dest: '/etc/postfix/sasl_passwd'
@ -17,18 +17,18 @@
mode: 0600
register: sasl_result
- name: ensure sasl_passwd.db exist
- name: Ensure sasl_passwd.db exist
stat:
path: '/etc/postfix/sasl_passwd.db'
register: sasldb
- name: create sasl_passwd.db
- name: Create sasl_passwd.db
command: '/usr/sbin/postmap hash:/etc/postfix/sasl_passwd'
when: sasldb.stat.exists == 'false' or sasl_result.changed
register: sasldb_update
notify: postfix_restart
- name: set permissions for sasl_passwd.db
- name: Set permissions for sasl_passwd.db
file:
path: '/etc/postfix/sasl_passwd.db'
owner: root
@ -36,7 +36,7 @@
mode: 0600
notify: postfix_restart
- name: override outgoing header
- name: Override outgoing header
template:
src: 'etc/postfix/sender_canonical.j2'
dest: '/etc/postfix/sender_canonical'
@ -45,13 +45,13 @@
mode: 0600
register: sender_result
- name: ensure sender_canonical.db exist
- name: Ensure sender_canonical.db exist
stat:
path: '/etc/postfix/sender_canonical.db'
register: senderdb
- name: hash sender_canoncial
- name: Hash sender_canoncial
command: '/usr/sbin/postmap hash:/etc/postfix/sender_canonical'
when: senderdb.stat.exists == false or sender_result.changed
register: senderdb_update
notify: postfix_restart
notify: postfix_restart

View File

@ -1,6 +1,6 @@
---
- name: install postfix mta
package:
- name: Install postfix mta
package:
name: '{{ item }}'
state: latest
with_items: