2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-09-19 17:04:38 +04:00
|
|
|
# $NetBSD: syslogd,v 1.7 2000/09/19 13:04:39 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: syslogd
|
2000-09-19 17:04:38 +04:00
|
|
|
# REQUIRE: mountcritremote sysdb wscons
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="syslogd"
|
2000-09-19 17:04:38 +04:00
|
|
|
rcvar=$name
|
2000-03-10 14:53:23 +03:00
|
|
|
command="/usr/sbin/${name}"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
required_files="/etc/syslog.conf"
|
|
|
|
start_precmd="syslogd_precmd"
|
2000-04-30 17:23:04 +04:00
|
|
|
extra_commands="reload"
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
syslogd_precmd()
|
|
|
|
{
|
|
|
|
# Transitional symlink for old binaries
|
|
|
|
#
|
|
|
|
if [ ! -h /dev/log ]; then
|
|
|
|
ln -sf /var/run/log /dev/log
|
|
|
|
fi
|
|
|
|
rm -f /var/run/log
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-04-30 17:23:04 +04:00
|
|
|
run_rc_command "$1"
|