diff options
-rw-r--r-- | rsyslog.conf.5 | 2 | ||||
-rw-r--r-- | rsyslogd.8 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/rsyslog.conf.5 b/rsyslog.conf.5 index 6f5acc14..399a8902 100644 --- a/rsyslog.conf.5 +++ b/rsyslog.conf.5 @@ -17,7 +17,7 @@ .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. .\" -.TH RSYSLOG.CONF 5 "04 September 2007" "Version 1.19.4" "Linux System Administration" +.TH RSYSLOG.CONF 5 "16 February 2008" "Version 3.11.3" "Linux System Administration" .SH NAME rsyslog.conf \- rsyslogd(8) configuration file .SH DESCRIPTION @@ -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 |