2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: bootparams
|
|
|
|
# REQUIRE: rpcbind DAEMON
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: LOGIN
|
2004-10-07 13:55:26 +00:00
|
|
|
# KEYWORD: nojail
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="bootparamd"
|
2016-04-23 16:10:54 +00:00
|
|
|
desc="Boot parameter daemon"
|
2012-01-14 02:18:41 +00:00
|
|
|
rcvar="bootparamd_enable"
|
2001-06-16 07:16:14 +00:00
|
|
|
required_files="/etc/bootparams"
|
2004-01-17 10:40:45 +00:00
|
|
|
command="/usr/sbin/${name}"
|
2002-09-05 20:14:46 +00:00
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|