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-daemon
T
2022-07-06 14:14:58 +02:00

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
}