83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
43 lines
609 B
Bash
43 lines
609 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: pfflowd
|
|
# REQUIRE: LOGIN
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable pfflowd:
|
|
#
|
|
# pfflowd_enable="YES"
|
|
# pfflowd_host="<host>:<port>"
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=pfflowd
|
|
rcvar=pfflowd_enable
|
|
|
|
load_rc_config $name
|
|
|
|
# set defaults
|
|
|
|
pfflowd_enable=${pfflowd_enable:-"NO"}
|
|
pfflowd_host=${pfflowd_host:-"127.0.0.1:2055"}
|
|
|
|
command=%%PREFIX%%/sbin/pfflowd
|
|
command_args="-n ${pfflowd_host}"
|
|
extra_commands=reload
|
|
|
|
stop_postcmd=stop_postcmd
|
|
|
|
stop_postcmd()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
run_rc_command "$1"
|