From 054f7665409170c0c6b8cd9f6e5e29b85ca35d8e Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 15 Oct 2007 14:37:14 +0000 Subject: fixed issue with (now) invalid startup options (-r 0 must now be -r0) --- ChangeLog | 4 ++++ slackware/rc.rsyslogd | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 74291f48..319202d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ --------------------------------------------------------------------------- Version 1.19.10 (rgerhards), 2007-10-15 +- introdcued the new ":modulename:" syntax for calling module actions + in selector lines; modified ommysql to support it. This is primarily + an aid for further modules and a prequisite to actually allow third + party modules to be created. --------------------------------------------------------------------------- Version 1.19.9 (rgerhards), 2007-10-12 - now packaging system which again contains all components in a single diff --git a/slackware/rc.rsyslogd b/slackware/rc.rsyslogd index 10a27911..f5f8f458 100755 --- a/slackware/rc.rsyslogd +++ b/slackware/rc.rsyslogd @@ -23,8 +23,8 @@ rsyslogd_start() { /usr/sbin/rsyslogd -i "$pidfile1" # this one listens only to the UDP port sleep 1 - echo "/usr/sbin/rsyslogd -o -r 0 -f $confile2 -i $pidfile2" - /usr/sbin/rsyslogd -o -r 0 -f "$confile2" -i "$pidfile2" + 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 -- cgit