xref: /freebsd/libexec/rc/rc.d/bootparams (revision aee4c74cdd59cd847af5a02de8c8e93bb31ac9fa)
1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# PROVIDE: bootparams
7# REQUIRE: rpcbind DAEMON
8# BEFORE:  LOGIN
9# KEYWORD: nojail
10
11. /etc/rc.subr
12
13name="bootparamd"
14desc="Boot parameter daemon"
15rcvar="bootparamd_enable"
16required_files="/etc/bootparams"
17command="/usr/sbin/${name}"
18
19load_rc_config $name
20run_rc_command "$1"
21