mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
assignments to the literal values it would have returned.
The concept of set_rcvar() was nice in theory, but the forks
it creates are a drag on the startup process, which is especially
noticeable on slower systems, such as embedded ones.
During the discussion on freebsd-rc@ a preference was expressed for
using ${name}_enable instead of the literal values. However the
code portability concept doesn't really apply since there are so
many other places where the literal name has to be searched for
and replaced. Also, using the literal value is also a tiny bit
faster than dereferencing the variables, and every little bit helps.
19 lines
274 B
Bash
Executable file
19 lines
274 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: bootparams
|
|
# REQUIRE: rpcbind DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="bootparamd"
|
|
rcvar="bootparamd_enable"
|
|
required_files="/etc/bootparams"
|
|
command="/usr/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|