summaryrefslogtreecommitdiffstats
path: root/redhat
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-07 20:54:08 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-07 20:54:08 +0200
commitb04d22a670c170554c53e59e05ae1475ed70f3aa (patch)
tree7fc95d6482ac6cda8ab602c4f4b8349b10c8ab98 /redhat
parentd6bc3db2caa14f45dd1e9b52fbdf85b77f2d05f2 (diff)
downloadrsyslog-b04d22a670c170554c53e59e05ae1475ed70f3aa.tar.gz
rsyslog-b04d22a670c170554c53e59e05ae1475ed70f3aa.tar.xz
rsyslog-b04d22a670c170554c53e59e05ae1475ed70f3aa.zip
removed red hat specific files
I could't maintain them and they are now handled by the package maintainers They were orginally introduced when there were no packages available. Over time, they became outdated and thus a bit problematic.
Diffstat (limited to 'redhat')
-rw-r--r--redhat/rsyslog12
-rw-r--r--redhat/rsyslog.conf26
-rw-r--r--redhat/rsyslog.init89
-rw-r--r--redhat/rsyslog.log6
-rw-r--r--redhat/rsyslog.sysconfig12
5 files changed, 0 insertions, 145 deletions
diff --git a/redhat/rsyslog b/redhat/rsyslog
deleted file mode 100644
index ee9be79b..00000000
--- a/redhat/rsyslog
+++ /dev/null
@@ -1,12 +0,0 @@
-# Options to syslogd
-# -m 0 disables 'MARK' messages.
-# -r enables logging from remote machines
-# -x disables DNS lookups on messages recieved with -r
-# See syslogd(8) for more details
-SYSLOGD_OPTIONS="-m 0"
-# Options to klogd
-# -2 prints all kernel oops messages twice; once for klogd to decode, and
-# once for processing with 'ksymoops'
-# -x disables all klogd processing of oops messages entirely
-# See klogd(8) for more details
-KLOGD_OPTIONS="-x"
diff --git a/redhat/rsyslog.conf b/redhat/rsyslog.conf
deleted file mode 100644
index 9d34c805..00000000
--- a/redhat/rsyslog.conf
+++ /dev/null
@@ -1,26 +0,0 @@
-# Log all kernel messages to the console.
-# Logging much else clutters up the screen.
-#kern.* /dev/console
-
-# Log anything (except mail) of level info or higher.
-# Don't log private authentication messages!
-*.info;mail.none;authpriv.none;cron.none /var/log/messages
-
-# The authpriv file has restricted access.
-authpriv.* /var/log/secure
-
-# Log all the mail messages in one place.
-mail.* -/var/log/maillog
-
-
-# Log cron stuff
-cron.* /var/log/cron
-
-# Everybody gets emergency messages
-*.emerg *
-
-# Save news errors of level crit and higher in a special file.
-uucp,news.crit /var/log/spooler
-
-# Save boot messages also to boot.log
-local7.* /var/log/boot.log
diff --git a/redhat/rsyslog.init b/redhat/rsyslog.init
deleted file mode 100644
index 6b6f0649..00000000
--- a/redhat/rsyslog.init
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/bash
-#
-# rsyslog Starts rsyslogd/rklogd.
-#
-#
-# chkconfig: 2345 12 88
-# description: Syslog is the facility by which many daemons use to log \
-# messages to various system log files. It is a good idea to always \
-# run rsyslog.
-### BEGIN INIT INFO
-# Provides: $syslog
-# Short-Description: Enhanced system logging and kernel message trapping daemons
-# Description: Rsyslog is an enhanced multi-threaded syslogd supporting,
-# among others, MySQL, syslog/tcp, RFC 3195, permitted
-# sender lists, filtering on any message part, and fine
-# grain output format control.
-### END INIT INFO
-
-# Source function library.
-. /etc/init.d/functions
-
-RETVAL=0
-
-start() {
- [ -x /sbin/rsyslogd ] || exit 5
- [ -x /sbin/rklogd ] || exit 5
-
- # Source config
- if [ -f /etc/sysconfig/rsyslog ] ; then
- . /etc/sysconfig/rsyslog
- else
- SYSLOGD_OPTIONS="-m 0"
- KLOGD_OPTIONS="-2"
- fi
-
- umask 077
-
- echo -n $"Starting system logger (rsyslog): "
- daemon rsyslogd $SYSLOGD_OPTIONS
- RETVAL=$?
- echo
- echo -n $"Starting kernel logger (rklogd): "
- daemon rklogd $KLOGD_OPTIONS
- echo
- [ $RETVAL -eq 0 ] && touch /var/lock/subsys/rsyslog
- return $RETVAL
-}
-stop() {
- echo -n $"Shutting down kernel logger (rklogd): "
- killproc rklogd
- echo
- echo -n $"Shutting down system logger (rsyslog): "
- killproc rsyslogd
- RETVAL=$?
- echo
- [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/rsyslog
- return $RETVAL
-}
-rhstatus() {
- status rsyslogd
- status rklogd
-}
-restart() {
- stop
- start
-}
-
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- status)
- rhstatus
- ;;
- restart|reload)
- restart
- ;;
- condrestart)
- [ -f /var/lock/subsys/rsyslog ] && restart || :
- ;;
- *)
- echo $"Usage: $0 {start|stop|status|restart|condrestart}"
- exit 2
-esac
-
-exit $?
diff --git a/redhat/rsyslog.log b/redhat/rsyslog.log
deleted file mode 100644
index e0593a26..00000000
--- a/redhat/rsyslog.log
+++ /dev/null
@@ -1,6 +0,0 @@
-/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron {
- sharedscripts
- postrotate
- /bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true
- endscript
-}
diff --git a/redhat/rsyslog.sysconfig b/redhat/rsyslog.sysconfig
deleted file mode 100644
index ee9be79b..00000000
--- a/redhat/rsyslog.sysconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-# Options to syslogd
-# -m 0 disables 'MARK' messages.
-# -r enables logging from remote machines
-# -x disables DNS lookups on messages recieved with -r
-# See syslogd(8) for more details
-SYSLOGD_OPTIONS="-m 0"
-# Options to klogd
-# -2 prints all kernel oops messages twice; once for klogd to decode, and
-# once for processing with 'ksymoops'
-# -x disables all klogd processing of oops messages entirely
-# See klogd(8) for more details
-KLOGD_OPTIONS="-x"