about summary refs log tree commit diff stats
path: root/tools/conf/etc/logrotate.d/gitolite
blob: 547d6b6aa1eed0adc3b3773486a581fe570fe711 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/var/log/gitolite {
    rotate 5
    monthly
    create 0644 root root
    sharedscripts
    postrotate
    if [ -f /var/run/syslog-ng.pid ]; then \
    	kill -HUP `cat /var/run/syslog-ng.pid`; \
    fi;
    endscript

}