Mason James
425cb6ec25
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
15 lines
265 B
Text
15 lines
265 B
Text
# Rotate log files for all Koha instances.
|
|
|
|
/var/log/koha/*/*.log {
|
|
rotate 5
|
|
weekly
|
|
missingok
|
|
copytruncate
|
|
compress
|
|
delaycompress
|
|
notifempty
|
|
sharedscripts
|
|
postrotate
|
|
/etc/init.d/apache2 reload > /dev/null
|
|
endscript
|
|
}
|