freebsd-dev/etc/rc.d/lkm2
David E. O'Brien 9d62501fd8 Import the NetBSD 1.5 RC system.
Note that `rc' and `rc.shutdown' could not be imported because we already
have files with those names.
2001-06-16 07:16:14 +00:00

38 lines
548 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: lkm2,v 1.3 2000/07/15 02:30:18 lukem Exp $
#
# PROVIDE: beforemountlkm
# REQUIRE: syslogd
. /etc/rc.subr
name="lkm2"
rcvar="lkm"
start_cmd="lkm2_start"
stop_cmd="lkm2_stop"
# load kernel modules specified in /etc/lkm.conf
#
lkm2_start()
{
if [ -r /etc/rc.lkm ]; then
lkmstage=BEFOREMOUNT
set start ; . /etc/rc.lkm
else
warn "/etc/rc.lkm not found; LKMs not loaded."
fi
}
lkm2_stop()
{
if [ -r /etc/rc.lkm ]; then
lkmstage=BEFOREMOUNT
set stop ; . /etc/rc.lkm
fi
}
load_rc_config lkm
run_rc_command "$1"