summaryrefslogtreecommitdiff
path: root/app-antivirus/clamav/files/freshclam.logrotate
blob: ba6b5de3ba1c1a8df4f2799202b6082f92e59416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This script is intended to rotate the logs for freshclam in its default
# configuration on Gentoo, where freshclam writes to its own log file but
# does not rotate that file itself. The freshclam daemon is capable of
# rotating its own logs; if you have "LogRotate yes" in freshclam.conf
# then you do not need this script (and should disable it). Likewise,
# if you are logging to syslog (LogSyslog yes), this is redundant.
/var/log/clamav/freshclam.log {
  su clamav clamav
  missingok
  postrotate
    if test -f /run/freshclam.pid; then
      /bin/kill -HUP $(cat /run/freshclam.pid)
    else
      true
    fi
  endscript
}