Logoj0ke.net Open Build Service > Projects > home:jg > haproxy > haproxy.logrotate
Sign Up | Log In

File haproxy.logrotate of Package haproxy

x
 
1
/var/log/haproxy.log {
2
    daily
3
    rotate 10
4
    missingok
5
    notifempty
6
    compress
7
    sharedscripts
8
    postrotate
9
        /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
10
        /bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true
11
    endscript
12
}
13