Bug 14753 - Use columns configuration for checkins table
[koha.git] / debian / koha-common.logrotate
1 # Rotate log files for all Koha instances.
2
3 /var/log/koha/*/*.log {
4     rotate 5
5     weekly
6     missingok
7     compress
8     delaycompress
9     notifempty
10     sharedscripts
11     prerotate
12         /usr/sbin/koha-stop-zebra $(koha-list --enabled) > /dev/null
13     endscript
14     postrotate
15         /etc/init.d/apache2 reload > /dev/null
16         /usr/sbin/koha-start-zebra $(koha-list --enabled) > /dev/null
17     endscript
18 }