Koha/debian/koha-common.logrotate
Lars Wirzenius 27c6ab764c Split off koha-common.
koha-common will be suitable for hosts with multiple Koha instances,
or those that otherwise need to do thing differently from the main
koha package.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-05-25 07:58:56 -04:00

14 lines
248 B
Text

# Rotate log files for all Koha instances.
/var/log/koha/*/*.log {
rotate 5
weekly
missingok
compress
delaycompress
notifempty
sharedscripts
postrotate
/etc/init.d/apache2 reload > /dev/null
endscript
}