This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/logrotate.d/clamav-freshclam
2021-10-27 17:20:29 +02:00

16 lines
408 B
Plaintext

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