start syslogd instead of usyslogd ; include syslog.conf
This commit is contained in:
parent
6a0829c700
commit
14a82e2d05
3 changed files with 23 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
ETC=/etc/
|
||||
USRETC=/usr/etc/
|
||||
FILES1=fstab group hostname.file inet.conf motd mtab passwd profile protocols rc services termcap ttytab utmp rc.cd binary_sizes binary_sizes.big binary_sizes.xxl rc.rescue
|
||||
FILES1=fstab group hostname.file inet.conf motd mtab passwd profile protocols rc services termcap ttytab utmp rc.cd binary_sizes binary_sizes.big binary_sizes.xxl rc.rescue syslog.conf
|
||||
FILES2=shadow
|
||||
FILES3=daily dhcptags.conf rc
|
||||
|
||||
|
|
21
etc/syslog.conf
Normal file
21
etc/syslog.conf
Normal file
|
@ -0,0 +1,21 @@
|
|||
##
|
||||
## @(#)syslog.conf 1.0 Jan. 18, 2000
|
||||
##
|
||||
## Use kill -HUP `cat /usr/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
|
||||
|
||||
## $Id$
|
||||
## end syslog.conf
|
|
@ -106,8 +106,7 @@ start)
|
|||
|
||||
echo -n "Starting daemons:"
|
||||
daemonize update
|
||||
rotate /usr/log/messages 7
|
||||
daemonize usyslogd
|
||||
daemonize syslogd
|
||||
|
||||
# Ugly error message when starting cron from CD.
|
||||
# (and cron unnecessary then so..)
|
||||
|
|
Loading…
Reference in a new issue