summaryrefslogtreecommitdiffstats
path: root/etc/logrotate.d
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:32:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:32:39 +0000
commit56ae875861ab260b80a030f50c4aff9f9dc8fff0 (patch)
tree531412110fc901a5918c7f7442202804a83cada9 /etc/logrotate.d
parentInitial commit. (diff)
downloadicinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.tar.xz
icinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.zip
Adding upstream version 2.14.2.upstream/2.14.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'etc/logrotate.d')
-rw-r--r--etc/logrotate.d/icinga2.cmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/etc/logrotate.d/icinga2.cmake b/etc/logrotate.d/icinga2.cmake
new file mode 100644
index 0000000..f0a9e59
--- /dev/null
+++ b/etc/logrotate.d/icinga2.cmake
@@ -0,0 +1,21 @@
+@ICINGA2_LOGDIR@/icinga2.log @ICINGA2_LOGDIR@/debug.log {
+ daily
+ rotate 7@LOGROTATE_USE_SU@
+ compress
+ delaycompress
+ missingok
+ notifempty@LOGROTATE_CREATE@
+ postrotate
+ /bin/kill -USR1 $(cat @ICINGA2_INITRUNDIR@/icinga2.pid 2> /dev/null) 2> /dev/null || true
+ endscript
+}
+
+@ICINGA2_LOGDIR@/error.log {
+ daily
+ rotate 90@LOGROTATE_USE_SU@
+ compress
+ delaycompress
+ missingok
+ notifempty@LOGROTATE_CREATE@
+ # TODO: figure out how to get Icinga to re-open this log file
+}