diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-06-05 17:34:10 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-06-05 17:34:10 +0200 |
commit | c0ed2bb7151d9a72a8606aff7d513a2687a3bb19 (patch) | |
tree | cc9a3f36571ec41cfaaa89d83bce8a4409733162 | |
parent | 17d7427e0bc5e61ee10e28cbc5cba5b8a7566d58 (diff) |
clamav: Don't set obsolete option 'AllowSupplementaryGroups'.
-rw-r--r-- | roles/amavis/tasks/main.yml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/roles/amavis/tasks/main.yml b/roles/amavis/tasks/main.yml index 4009c05..c061d09 100644 --- a/roles/amavis/tasks/main.yml +++ b/roles/amavis/tasks/main.yml @@ -13,47 +13,40 @@ - pax - binutils - p7zip-full - unrar-free - arj - nomarch - zoo - ripole - cabextract - unar - tnef notify: - Restart Amavis - name: Add 'clamav' to the group 'amavis' user: name=clamav groups=amavis append=yes notify: - Restart ClamAV - Restart Amavis -- name: Set AllowSupplementaryGroups=true - lineinfile: "dest=/etc/clamav/clamd.conf - regexp='^AllowSupplementaryGroups\\s' - line='AllowSupplementaryGroups true'" - notify: - - Restart ClamAV - - name: Create directory /var/lib/dkim file: path=/var/lib/dkim state=directory owner=root group=root mode=0755 when: "'out' in group_names" tags: - genkey - name: Generate a private key for DKIM signing command: genkeypair.sh dkim --privkey=/var/lib/dkim/20140703.fripost.org.key -t rsa -b 1024 register: dkim changed_when: dkim.rc == 0 failed_when: dkim.rc > 1 when: "'out' in group_names" notify: - Restart Amavis - Publish the public key to the DNS zone tags: - genkey |