0d70265775
The syslogd.pid file has moved from /usr/run to /var/run. The comments in syslog.conf direct the user to restart syslogd using the old PID file location. This patch updates the comment to match the code. Change-Id: Ib40cd1199ce201e1cbc74e1f1393d55a166ef343
20 lines
495 B
Text
20 lines
495 B
Text
##
|
|
## @(#)syslog.conf 1.0 Jan. 18, 2000
|
|
##
|
|
## Use kill -HUP `cat /var/run/syslogd.pid` to restart
|
|
## the server, forcing it to reread this file.
|
|
|
|
## Emergency messages (system may be unusable)
|
|
*.emerg *
|
|
*.alert /dev/log
|
|
|
|
## High severity errors
|
|
*.alert;*.crit /var/log/syslog
|
|
|
|
## Every other message (errors/warning and informational)
|
|
*.info;*.notice;*.warning;*.err /var/log/messages
|
|
|
|
## Debug informations (tracing programs)
|
|
#*.debug /var/log/debug
|
|
|
|
## end syslog.conf
|