mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
40 lines
710 B
Plaintext
40 lines
710 B
Plaintext
# ----- logrotate config -------------
|
|
/var/log/icinga2/icinga2.log {
|
|
daily
|
|
rotate 90
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 644 icinga icinga
|
|
copytruncate
|
|
#postrotate
|
|
# if /etc/init.d/icinga2 status > /dev/null ; then \
|
|
# /etc/init.d/icinga2 reload > /dev/null; \
|
|
# fi;
|
|
#endscript
|
|
}
|
|
|
|
/var/log/icinga2/error.log {
|
|
daily
|
|
rotate 90
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 644 icinga icinga
|
|
copytruncate
|
|
}
|
|
|
|
/var/log/icinga2/debug.log {
|
|
hourly
|
|
rotate 90
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 644 icinga icinga
|
|
copytruncate
|
|
}
|
|
|