blob: b718f103d85eb5c989d64a73ff89a05ca990219c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: kernel
# REQUIRE: mountcritremote
# KEYWORD: nojail
. /etc/rc.subr
name="kernel"
start_cmd="kernel_start"
stop_cmd=":"
kernel_start()
{
bootdir=$(dirname $(sysctl -n kern.bootfile))
if [ "$bootdir" != /boot/kernel ] ; then
if [ ! -e /boot/kernel -o -h /boot/kernel ] ; then
ln -hfs ${bootdir} /boot/kernel
fi
fi
}
load_rc_config $name
run_rc_command "$1"
|