diff options
Diffstat (limited to 'roles/MSA/tasks')
-rw-r--r-- | roles/MSA/tasks/main.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/roles/MSA/tasks/main.yml b/roles/MSA/tasks/main.yml index 30473a6..c7424d8 100644 --- a/roles/MSA/tasks/main.yml +++ b/roles/MSA/tasks/main.yml @@ -9,9 +9,8 @@ dest=/etc/postfix-{{ postfix_instance[inst].name }}/main.cf owner=root group=root mode=0644 - register: r notify: - - Restart Postfix + - Reload Postfix - name: Copy the Regex to anonymize senders # no need to reload upon change, as cleanup(8) is short-running @@ -20,8 +19,7 @@ owner=root group=root mode=0644 +- meta: flush_handlers + - name: Start Postfix service: name=postfix state=started - when: not r.changed - -- meta: flush_handlers |