summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-16 17:39:25 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-16 17:39:25 +0000
commit8550278ca48b2953db359e6bb00df562db6961a1 (patch)
tree0041c5677119ea697bdbb7913e6cee0d380a864f
parent5bc9673426a435e50adf4588e95f297d135e89c3 (diff)
downloadrsyslog-8550278ca48b2953db359e6bb00df562db6961a1.tar.gz
rsyslog-8550278ca48b2953db359e6bb00df562db6961a1.tar.xz
rsyslog-8550278ca48b2953db359e6bb00df562db6961a1.zip
improved man page a bit for the novice user
-rw-r--r--rsyslog.conf.52
-rw-r--r--rsyslogd.84
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
diff --git a/rsyslogd.8 b/rsyslogd.8
index 7a03cf16..1690c3fe 100644
--- a/rsyslogd.8
+++ b/rsyslogd.8
@@ -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