diff options
author | Michael Biebl <biebl@debian.org> | 2013-03-05 17:35:26 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-03-05 17:35:26 +0100 |
commit | ac1a840d0afd724fa614eed5d64112a9ecf097f8 (patch) | |
tree | 29fc7cd1a00820ae3bda8e5b08e32da89c055e60 /slackware | |
parent | 3793efd744861415cbb0e10df6ac9eab7b21e78e (diff) | |
download | rsyslog-ac1a840d0afd724fa614eed5d64112a9ecf097f8.tar.gz |
Imported Upstream version 7.2.6upstream/7.2.6
Diffstat (limited to 'slackware')
-rwxr-xr-x | slackware/rc.rsyslogd | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/slackware/rc.rsyslogd b/slackware/rc.rsyslogd deleted file mode 100755 index f5f8f45..0000000 --- a/slackware/rc.rsyslogd +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# Start/stop/restart the system logging daemons. -# -# Written for Slackware Linux by Patrick J. Volkerding <volkerdi@slackware.com>. -# Modded for rsyslogd by Chris Elvidge <chris@lowe.ae> Sept 2005 -# - -create_xconsole() -{ - if [ ! -e /dev/xconsole ]; then - mknod -m 640 /dev/xconsole p - else - chmod 0640 /dev/xconsole - fi - chown 0:0 /dev/xconsole -} - -rsyslogd_start() { - if [ -x /usr/sbin/rsyslogd -a -x /usr/sbin/klogd ]; then - echo "Starting rsyslogd / klogd daemons: " -# this one listens on the "usual" socket /dev/log - echo "/usr/sbin/rsyslogd -i $pidfile1" - /usr/sbin/rsyslogd -i "$pidfile1" -# this one listens only to the UDP port - sleep 1 - echo "/usr/sbin/rsyslogd -o -r0 -f $confile2 -i $pidfile2" - /usr/sbin/rsyslogd -o -r0 -f "$confile2" -i "$pidfile2" - sleep 1 # prevent syslogd/klogd race condition on SMP kernels - echo "/usr/sbin/klogd -c 3 -x" - # '-c 3' = display level 'error' or higher messages on console - # '-x' = turn off broken EIP translation - /usr/sbin/klogd -c 3 -x - fi -} - -rsyslogd_stop() { - killall rsyslogd 2> /dev/null - killall klogd 2> /dev/null - /usr/bin/rm pidfile1 2> /dev/null - /usr/bin/rm pidfile2 2> /dev/null -} - -rsyslogd_restart() { - rsyslogd_stop - sleep 1 - rsyslogd_start -} - -confile1=/etc/rsyslog.conf -pidfile1=/var/run/rsyslogd.pid - -confile2=/etc/rsyslog.udp.conf -pidfile2=/var/run/rsyslogd.udp.pid - -case "$1" in -'start') - create_xconsole - rsyslogd_start - ;; -'stop') - rsyslogd_stop - ;; -'restart') - rsyslogd_restart - ;; -*) - echo "usage $0 start|stop|restart" -esac |