diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-16 17:39:25 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-16 17:39:25 +0000 |
commit | 8550278ca48b2953db359e6bb00df562db6961a1 (patch) | |
tree | 0041c5677119ea697bdbb7913e6cee0d380a864f /rsyslogd.8 | |
parent | 5bc9673426a435e50adf4588e95f297d135e89c3 (diff) | |
download | rsyslog-8550278ca48b2953db359e6bb00df562db6961a1.tar.gz rsyslog-8550278ca48b2953db359e6bb00df562db6961a1.tar.xz rsyslog-8550278ca48b2953db359e6bb00df562db6961a1.zip |
improved man page a bit for the novice user
Diffstat (limited to 'rsyslogd.8')
-rw-r--r-- | rsyslogd.8 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -236,14 +236,14 @@ reacts to a set of signals. You may easily send a signal to using the following: .IP .nf -kill -SIGNAL `cat /var/run/rsyslogd.pid` +kill -SIGNAL $(cat /var/run/syslogd.pid) .fi .PP Note that -SIGNAL must be replaced with the actual signal you are trying to send, e.g. with SIGHUP. So it then becomes: .IP .nf -kill -SIGHUP `cat /var/run/rsyslogd.pid` +kill -SIGHUP $(cat /var/run/syslogd.pid) .fi .PP .TP |