15 lines
381 B
Plaintext
15 lines
381 B
Plaintext
/var/log/clamav/clamav.log {
|
|
rotate 8
|
|
weekly
|
|
compress
|
|
delaycompress
|
|
create 640 clamav adm
|
|
postrotate
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl -q is-active clamav-daemon && systemctl kill --signal=SIGHUP clamav-daemon || true
|
|
else
|
|
/etc/init.d/clamav-daemon reload-log > /dev/null || true
|
|
fi
|
|
endscript
|
|
}
|