diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-03 18:21:22 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:21 +0200 |
commit | 738788e9536ac5bd697ddc0281bf7567451a4f7e (patch) | |
tree | bf2a29fb33e0af22f57c0fc16234881304782ef0 /roles/amavis/tasks/main.yml | |
parent | 1c357b55931a0d4fbd15d51d61ec4e81d4f38aa5 (diff) |
typo
Diffstat (limited to 'roles/amavis/tasks/main.yml')
-rw-r--r-- | roles/amavis/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/amavis/tasks/main.yml b/roles/amavis/tasks/main.yml index 354ade8..00e8c40 100644 --- a/roles/amavis/tasks/main.yml +++ b/roles/amavis/tasks/main.yml @@ -26,37 +26,37 @@ - name: Add 'clamav' to the group 'amavis' user: name=clamav groups=amavis append=yes register: r1 notify: - Restart ClamAV - Restart Amavis - name: Create directory /var/lib/dkim file: path=/var/lib/dkim state=directory owner=root group=root mode=0755 - name: Generate a private key for DKIM signing command: genkeypair.sh dkim --privkey=/var/lib/dkim/outgoing.fripost.org.key --dns=outgoing -t rsa -b 2048 register: dkim changed_when: dkim.rc == 0 failed_when: dkim.rc > 1 notify: - Restart Amavis - - Publish the public key in the DNS zone + - Publish the public key to the DNS zone tags: - genkey - name: Configure Amavis template: src=etc/amavis/conf.d/50-user.j2 dest=/etc/amavis/conf.d/50-user owner=root group=root mode=0644 register: r3 notify: - Restart Amavis - meta: flush_handlers - name: Start Amavis service: name=amavis state=started |