summaryrefslogtreecommitdiffstats
path: root/network/pound/pound.logrotate
blob: 17f3cf33066b728014198b03d7558b2803138c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/var/pound/access.log {
    weekly
    rotate 4
    compress
    notifempty
    postrotate
        /bin/kill -HUP $(cat /var/run/syslogd.pid 2> /dev/null) 2> /dev/null || true
    endscript
}

/var/pound/error.log {
    weekly
    rotate 4
    compress
    notifempty
    missingok
    postrotate
        /bin/kill -HUP $(cat /var/run/syslogd.pid 2> /dev/null) 2> /dev/null || true
    endscript
}