Whitespace fixes
[freeradius.git] / scripts / logrotate.freeradius
1 #
2 #  Sample logrotate file for FreeRADIUS.
3 #
4 #  It needs to be edited for your local configuration.
5 #
6 /var/log/radius/radius.log {
7         daily
8         rotate 14
9         compress
10         delaycompress
11         missingok
12         notifempty
13         postrotate
14                 kill -HUP `cat /var/run/radiusd.pid` > /dev/null 2>&1
15         endscript
16 }