
IMPORTANT: this change has a docs/UPDATING entry! This patch performs an initial import of the infrastructure and a subset of the NetBSD set of rc startup and shutdown scripts. The "initial" refers to the fact that this is not yet a full switch to the NetBSD rc system: the MINIX ramdisk rc script, which (typically) runs as the first thing, is kept as is. After mounting the root file system, the ramdisk rc script will start the NetBSD rc infrastructure by invoking /etc/rc, however. The regular MINIX startup-and-shutdown script has been moved from /etc/rc to /etc/rc.minix, and is now invoked as part of the NetBSD rc infrastructure through a bridge rc script /etc/rc.d/minixrc. /etc/rc.minix invokes /usr/etc/rc as before. Switching over the ramdisk to the NetBSD system and decomposing the MINIX rc.minix script into smaller components are left to future work. Also, the current pkgsrc etc/rc.d auto-start functionality is left as is, even though it should be removed (see the etc/usr/rc comment). Change-Id: Ia96cae7c426e94b85c67978dc1307dacc4b09fc5
65 lines
1.3 KiB
Bash
Executable File
65 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: syslogd,v 1.15 2004/10/11 13:29:52 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: syslogd
|
|
# REQUIRE: mountcritremote sysdb wscons
|
|
# BEFORE: SERVERS
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="syslogd"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/syslog.conf"
|
|
start_precmd="syslogd_precmd"
|
|
extra_commands="reload"
|
|
|
|
_sockfile="/var/run/syslogd.sockets"
|
|
|
|
syslogd_precmd()
|
|
{
|
|
# Transitional symlink for old binaries
|
|
#
|
|
# MINIX 3: unsupported, disabled
|
|
#if [ ! -h /dev/log ]; then
|
|
# ln -sf /var/run/log /dev/log
|
|
#fi
|
|
# MINIX 3: end
|
|
|
|
# Create default list of syslog sockets to watch
|
|
#
|
|
( umask 022 ; > $_sockfile )
|
|
|
|
# Find /etc/rc.d scripts with "chrootdir" rcorder(8) keyword,
|
|
# and if $${app}_chrootdir is a directory, add appropriate
|
|
# syslog socket to list of sockets to watch.
|
|
#
|
|
for _lr in $(rcorder -k chrootdir /etc/rc.d/*); do
|
|
(
|
|
_l=${_lr##*/}
|
|
load_rc_config ${_l}
|
|
eval _ldir=\$${_l}_chrootdir
|
|
if checkyesno $_l && [ -n "$_ldir" ]; then
|
|
echo "${_ldir}/var/run/log" >> $_sockfile
|
|
fi
|
|
)
|
|
done
|
|
|
|
# If other sockets have been provided, change run_rc_command()'s
|
|
# internal copy of $syslogd_flags to force use of specific
|
|
# syslogd sockets.
|
|
#
|
|
if [ -s $_sockfile ]; then
|
|
echo "/var/run/log" >> $_sockfile
|
|
rc_flags="-P $_sockfile $rc_flags"
|
|
fi
|
|
|
|
return 0
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|