diff options
-rw-r--r-- | roles/common/tasks/clamav.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/common/tasks/clamav.yml b/roles/common/tasks/clamav.yml index de11ee6..3579d31 100644 --- a/roles/common/tasks/clamav.yml +++ b/roles/common/tasks/clamav.yml @@ -1,21 +1,21 @@ - name: Install ClamAV apt: pkg={{ item }} with_items: - clamav - clamav-daemon - clamav-freshclam - name: Configure FreshClam template: src=etc/clamav/freshclam.conf.j2 dest=/etc/clamav/freshclam.conf - owner=root group=root - mode=0644 + owner=clamav group=adm + mode=0444 tags: freshclam notify: - Restart freshclam - name: Start ClamAV service: name={{ item }} state=started with_items: - clamav-daemon - clamav-freshclam |