diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-10-15 14:37:14 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-10-15 14:37:14 +0000 |
commit | 054f7665409170c0c6b8cd9f6e5e29b85ca35d8e (patch) | |
tree | 2913e344b3f1f25e2aac91fe7ab851fc01aa0b41 /slackware | |
parent | 9b386f259e2b0e5389be7851e698908eac45d75e (diff) | |
download | rsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.tar.gz rsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.tar.xz rsyslog-054f7665409170c0c6b8cd9f6e5e29b85ca35d8e.zip |
fixed issue with (now) invalid startup options (-r 0 must now be -r0)
Diffstat (limited to 'slackware')
-rwxr-xr-x | slackware/rc.rsyslogd | 4 |
1 files changed, 2 insertions, 2 deletions
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 |