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.
27 lines
650 B
Bash
27 lines
650 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: prelude_pflogger
|
|
# REQUIRE: NETWORKING SERVERS
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# prelude_pflogger_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable Prelude PFLogger.
|
|
# prelude_pflogger_flags (flags): Set arguments to use with Prelude PFLogger
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="prelude_pflogger"
|
|
rcvar=prelude_pflogger_enable
|
|
|
|
command=%%PREFIX%%/bin/prelude-pflogger
|
|
pidfile=/var/run/prelude-pflogger.pid
|
|
|
|
load_rc_config $name
|
|
|
|
: ${prelude_pflogger_enable="NO"}
|
|
: ${prelude_pflogger_flags="-d -P ${pidfile}"}
|
|
|
|
run_rc_command "$1"
|