]> git.koha-community.org Git - koha.git/blob - debian/koha-common.logrotate
Bug 24993: Make sure SIP server is stopped before restarting it
[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     copytruncate
8     compress
9     delaycompress
10     notifempty
11     sharedscripts
12     postrotate
13         /etc/init.d/apache2 reload > /dev/null
14     endscript
15 }