Change the permissions of /var/lib/clamav so that freshclam can write into it.

This commit is contained in:
Andrea Dell'Amico 2020-01-11 16:32:46 +01:00
parent 75dd8ca0cb
commit a054e94915
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@
- name: Install the freshclam configuration
template: src=freshclam.conf.j2 dest=/etc/freshclam.conf owner=root group=root mode=0400
- name: Change the /var/lib/clamav permissions so that freshclam can write into it
file: dest=/var/lib/clamav state=directory owner=clamscan group=clamupdate mode='u=rwx,g=rwsx,o=rx'
- name: Ensure that the clamd service is running and enabled
service: name=clamd@scan state=started enabled=yes