# from policy:
#Log files must be rotated occasionally so that they don't grow indefinitely;
#the best way to do this is to drop a log rotation configuration file into
#the directory /etc/logrotate.d and use the facilities provided by
#logrotate.[56]

/var/log/schoolbell/*.log {
    rotate 12
    weekly
    compress
    sharedscripts
    postrotate
    [ -x /etc/init.d/schoolbell ] && /etc/init.d/schoolbell restart > /dev/null
    endscript
}
