diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-17 05:13:02 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-17 05:21:36 +0200 |
commit | e5d74c69d34522b37386291666dbae0c9a43e802 (patch) | |
tree | f6dec0980797f281c278d4600c2312ee25480c40 | |
parent | aba1438a4d188ae4ba20d2ee264212622809afd1 (diff) |
roles/amavis: Drop packages that no longer exist.
-rw-r--r-- | roles/amavis/tasks/main.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/roles/amavis/tasks/main.yml b/roles/amavis/tasks/main.yml index 3036c52..075b770 100644 --- a/roles/amavis/tasks/main.yml +++ b/roles/amavis/tasks/main.yml @@ -1,41 +1,39 @@ - name: Install amavis and its decoders apt: pkg={{ packages }} vars: packages: - amavisd-new - libnet-ldap-perl # Mail::DKIM - libmail-dkim-perl - gzip - bzip2 - xz-utils - lzop - rpm2cpio - 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: Add an 'amavis' alias lineinfile: dest=/etc/aliases create=yes regexp="^amavis{{':'}} " line="amavis{{':'}} root" - name: Compile the static local Postfix database postmap: cmd=postalias src=/etc/aliases db=lmdb owner=root group=root |