17 lines
332 B
Plaintext
17 lines
332 B
Plaintext
# Rotate log files for all Koha instances.
|
|
|
|
{{ koha_install_dir }}/var/log/*log {
|
|
rotate 5
|
|
weekly
|
|
missingok
|
|
compress
|
|
su {{ koha_user }} {{ koha_group }}
|
|
delaycompress
|
|
notifempty
|
|
sharedscripts
|
|
postrotate
|
|
/bin/systemctl restart plack.service zebrasrv.service koha-sip
|
|
endscript
|
|
|
|
}
|