aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/pflog
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2012-01-14 02:18:41 +0000
committerDoug Barton <dougb@FreeBSD.org>2012-01-14 02:18:41 +0000
commit801c4383045d116b4db2e30682d22a0f0378c581 (patch)
treec935ebd8ad80aacee0a36fef89dd1e71e33fb10a /etc/rc.d/pflog
parent4104e83567e9b478ee7465444509ab6ecb6304b9 (diff)
downloadsrc-801c4383045d116b4db2e30682d22a0f0378c581.tar.gz
src-801c4383045d116b4db2e30682d22a0f0378c581.zip
Prepare for the removal of set_rcvar() by changing the rcvar=
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.
Notes
Notes: svn path=/head/; revision=230099
Diffstat (limited to 'etc/rc.d/pflog')
-rwxr-xr-xetc/rc.d/pflog2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/pflog b/etc/rc.d/pflog
index 001ad38de2cf..e5511fca62e3 100755
--- a/etc/rc.d/pflog
+++ b/etc/rc.d/pflog
@@ -10,7 +10,7 @@
. /etc/rc.subr
name="pflog"
-rcvar=`set_rcvar`
+rcvar="pflog_enable"
command="/sbin/pflogd"
pidfile="/var/run/pflogd.pid"
start_precmd="pflog_prestart"