diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-09-18 17:52:28 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-09-18 17:52:31 +0200 |
commit | 87dc808939fbc740c3742e10ce4d23a4c7099c07 (patch) | |
tree | 61dbfbc2be41440b0430345fc7b2131b6d7b7354 /roles/common/tasks | |
parent | e0274134445a99c2fab01928b180e2a3d4f9be69 (diff) |
FreshClam: change ownership of /etc/clamav/freshclam.conf.
To match the stock version shipped by clamav-freshclam
0.99.2+dfsg-0+deb8u2
~$ stat -c '%U:%G %a' /etc/clamav/freshclam.conf
clamav:adm 444
Diffstat (limited to 'roles/common/tasks')
-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 @@ -8,8 +8,8 @@ - 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 |