27c6ab764c
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>
14 lines
248 B
Text
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
|
|
}
|