diff options
Diffstat (limited to 'roles/out/tasks')
-rw-r--r-- | roles/out/tasks/main.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/roles/out/tasks/main.yml b/roles/out/tasks/main.yml index 8bd8bbb..69d9ead 100644 --- a/roles/out/tasks/main.yml +++ b/roles/out/tasks/main.yml @@ -28,12 +28,9 @@ postmap: cmd=postmap src=/etc/postfix-{{ postfix_instance[inst].name }}/relay_clientcerts db=cdb owner=root group=root mode=0644 - register: r2 - notify: - - Restart Postfix - name: Start Postfix service: name=postfix state=started - when: not (r1.changed or r2.changed) + when: not r.changed - meta: flush_handlers |