blob: 397ca08e861bce229870c63a32b007d4213675e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
#
# $FreeBSD: src/etc/rc.d/bootparams,v 1.7.10.1.4.1 2009/04/15 03:14:26 kensmith Exp $
#
# PROVIDE: bootparams
# REQUIRE: rpcbind DAEMON
# BEFORE: LOGIN
# KEYWORD: nojail
. /etc/rc.subr
name="bootparamd"
rcvar=`set_rcvar`
required_files="/etc/bootparams"
command="/usr/sbin/${name}"
load_rc_config $name
run_rc_command "$1"
|