diff options
Diffstat (limited to 'linux/conf/logrotate.d/samhain')
-rw-r--r-- | linux/conf/logrotate.d/samhain | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/linux/conf/logrotate.d/samhain b/linux/conf/logrotate.d/samhain new file mode 100644 index 0000000..d60f810 --- /dev/null +++ b/linux/conf/logrotate.d/samhain @@ -0,0 +1,24 @@ +/var/log/samhain.log { + weekly + rotate 52 + nocreate + missingok + compress + + prerotate + if test -f /var/run/samhain.pid; then \ + PIN=`cat /var/run/samhain.pid`; \ + /bin/kill -TTIN $PIN; \ + sleep 1; \ + AA=0; \ + while test "x$AA" != "x120"; do \ + AA=$(( AA + 1 )); \ + if test -f /var/log/samhain.log.lock; then \ + sleep 1; \ + else \ + break; \ + fi \ + done; \ + fi + endscript +} |