blob: 251cb02ffaf20f995d02f6a34f20bf79354e5604 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# PROVIDE: pfstatd
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable pfstatd:
# pfstatd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable pfstatd
. /etc/rc.subr
name="pfstatd"
rcvar=pfstatd_enable
command="%%PREFIX%%/bin/${name}"
load_rc_config ${name}
: ${pfstatd_enable:="NO"}
run_rc_command "$1"
|