mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -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.
20 lines
338 B
Bash
Executable file
20 lines
338 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: route6d
|
|
# REQUIRE: netif routing
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="route6d"
|
|
rcvar="route6d_enable"
|
|
|
|
set_rcvar_obsolete ipv6_router_enable route6d_enable
|
|
set_rcvar_obsolete ipv6_router route6d_program
|
|
set_rcvar_obsolete ipv6_router_flags route6d_flags
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|