summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/kernel
blob: ed9e02e0afafd07f482bb687f6d02ed86801c1f3 (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
#!/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 [ ! -e /boot/kernel -o -h /boot/kernel ] ; then
		ln -hfs ${bootdir} /boot/kernel
	fi
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud