summaryrefslogtreecommitdiff
path: root/app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in
diff options
context:
space:
mode:
Diffstat (limited to 'app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in')
-rw-r--r--app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in75
1 files changed, 0 insertions, 75 deletions
diff --git a/app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in b/app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in
deleted file mode 100644
index 21ec5eba69c3..000000000000
--- a/app-admin/syslog-ng/files/syslog-ng.logrotate.hardened.in
+++ /dev/null
@@ -1,75 +0,0 @@
-#
-# Syslog-ng logrotate snippet for Hardened Gentoo Linux
-# contributed by Maciej Grela
-#
-# Updated bug #284669
-
-# Generic
-/var/log/debug /var/log/syslog /var/log/kern.log {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# System services
-/var/log/cron.log /var/log/daemon.log /var/log/lpr.log /var/log/uucp.log {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# User log
-/var/log/user.log {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# News system
-/var/log/news/news.crit /var/log/news/news.err /var/log/news/news.notice {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# Mail system
-/var/log/mail.log /var/log/mail.info /var/log/mail.err /var/log/mail.warn {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# Hardened logs
-/var/log/avc.log /var/log/audit.log /var/log/pax.log /var/log/grsec.log {
- sharedscripts
- missingok
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# Authentication
-/var/log/auth.log {
- sharedscripts
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}
-
-# the rest
-/var/log/messages {
- sharedscripts
- postrotate
- @GENTOO_RESTART@ > /dev/null 2>&1 || true
- endscript
-}