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