summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-10-15 14:37:14 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-10-15 14:37:14 +0000
commit054f7665409170c0c6b8cd9f6e5e29b85ca35d8e (patch)
tree2913e344b3f1f25e2aac91fe7ab851fc01aa0b41
parent9b386f259e2b0e5389be7851e698908eac45d75e (diff)
downloadrsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.tar.gz
rsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.tar.xz
rsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.zip
fixed issue with (now) invalid startup options (-r 0 must now be -r0)
-rw-r--r--ChangeLog4
-rwxr-xr-xslackware/rc.rsyslogd4
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