diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | slackware/rc.rsyslogd | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -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 |