forked from ISTI-ansible-roles/ansible-roles
Change the permissions of /var/lib/clamav so that freshclam can write into it.
This commit is contained in:
parent
75dd8ca0cb
commit
a054e94915
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue