1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-20 15:43:16 +00:00

There is no need to explicitly add "status" to $extra_commands in

the /etc/rc.d/pf script as it is implicitly added by /etc/rc.subr's
run_rc_command() because of the existing $pf_program.

Submitted by:	Christoph Schug <chris@schug.net>
MFC after:	1 week
This commit is contained in:
Ralf S. Engelschall 2005-11-03 13:17:49 +00:00
parent 9f9e9e1b8d
commit 9d14a9a235
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152016

View File

@ -20,7 +20,7 @@ check_cmd="pf_check"
reload_cmd="pf_reload"
resync_cmd="pf_resync"
status_cmd="pf_status"
extra_commands="check reload resync status"
extra_commands="check reload resync"
required_files="$pf_rules"
pf_prestart()