diff options
author | punk <punk@libernaut> | 2021-04-29 16:11:04 +0100 |
---|---|---|
committer | punk <punk@libernaut> | 2021-04-29 16:11:25 +0100 |
commit | 9bef2e2b7ea351b6b1cb490597356677db61ff34 (patch) | |
tree | c36ae24aa3c36f6c19284c7d4da7c25a620bfabf /tools/conf/etc/logrotate.d | |
parent | 6b5cf63d1987889e272643bf7eeb7725df856d11 (diff) | |
parent | 5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3 (diff) | |
download | doc-master.tar.gz |
Diffstat (limited to 'tools/conf/etc/logrotate.d')
-rw-r--r-- | tools/conf/etc/logrotate.d/fail2ban | 5 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/letsencrypt | 7 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/lynis | 10 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/ntp | 5 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/postgresql | 10 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/samhain | 24 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/shorewall | 11 | ||||
-rw-r--r-- | tools/conf/etc/logrotate.d/shorewall6 | 5 |
8 files changed, 0 insertions, 77 deletions
diff --git a/tools/conf/etc/logrotate.d/fail2ban b/tools/conf/etc/logrotate.d/fail2ban deleted file mode 100644 index c2dc4cd..0000000 --- a/tools/conf/etc/logrotate.d/fail2ban +++ /dev/null @@ -1,5 +0,0 @@ -/var/log/fail2ban.log { - weekly - create 0644 root root - rotate 5 - } diff --git a/tools/conf/etc/logrotate.d/letsencrypt b/tools/conf/etc/logrotate.d/letsencrypt deleted file mode 100644 index ce73ebc..0000000 --- a/tools/conf/etc/logrotate.d/letsencrypt +++ /dev/null @@ -1,7 +0,0 @@ -/var/log/letsencrypt/*.log { - # uncomment this if you want your log files compressed - delaycompress - compress - olddir /var/log/old/letsencrypt - notifempty -} diff --git a/tools/conf/etc/logrotate.d/lynis b/tools/conf/etc/logrotate.d/lynis deleted file mode 100644 index 8cf9181..0000000 --- a/tools/conf/etc/logrotate.d/lynis +++ /dev/null @@ -1,10 +0,0 @@ -/var/log/lynis.log { - rotate 5 - monthly - create 0644 root root -} -/var/log/lynis-report.dat { - rotate 5 - monthly - create 0644 root root -} diff --git a/tools/conf/etc/logrotate.d/ntp b/tools/conf/etc/logrotate.d/ntp deleted file mode 100644 index c46b590..0000000 --- a/tools/conf/etc/logrotate.d/ntp +++ /dev/null @@ -1,5 +0,0 @@ -/var/log/ntp.log { - weekly - create 0644 root root - rotate 5 -} diff --git a/tools/conf/etc/logrotate.d/postgresql b/tools/conf/etc/logrotate.d/postgresql deleted file mode 100644 index 8c16bfa..0000000 --- a/tools/conf/etc/logrotate.d/postgresql +++ /dev/null @@ -1,10 +0,0 @@ -# this log is only used by postgresql at startup -# before start using syslog so there is no need -# to reload syslog-ng or syslog-ng -/var/log/postgresql { - # uncomment this if you want your log files compressed - delaycompress - compress - notifempty - create 664 postgres postgres -} diff --git a/tools/conf/etc/logrotate.d/samhain b/tools/conf/etc/logrotate.d/samhain deleted file mode 100644 index d60f810..0000000 --- a/tools/conf/etc/logrotate.d/samhain +++ /dev/null @@ -1,24 +0,0 @@ -/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 -} diff --git a/tools/conf/etc/logrotate.d/shorewall b/tools/conf/etc/logrotate.d/shorewall deleted file mode 100644 index a7dffdf..0000000 --- a/tools/conf/etc/logrotate.d/shorewall +++ /dev/null @@ -1,11 +0,0 @@ -/var/log/shorewall-init.log { - missingok - notifempty - create 0600 root root - sharedscripts - postrotate - if [ -f /var/run/syslog-ng.pid ]; then \ - kill -HUP `cat /var/run/syslog-ng.pid`; \ - fi; - endscript -} diff --git a/tools/conf/etc/logrotate.d/shorewall6 b/tools/conf/etc/logrotate.d/shorewall6 deleted file mode 100644 index ee5e246..0000000 --- a/tools/conf/etc/logrotate.d/shorewall6 +++ /dev/null @@ -1,5 +0,0 @@ -/var/log/shorewall6-init.log { - missingok - notifempty - create 0600 root root -} |