ports/security/arpCounterattack/files/arpCounterattack.in
Doug Barton 83eb2c3700 In the rc.d scripts, change assignments to rcvar to use the
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.
2012-01-14 08:57:23 +00:00

44 lines
1 KiB
Bash

#!/bin/sh
# $FreeBSD
# PROVIDE: arpcounterattack
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
# Define these arpcounterattack_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/arpcounterattack
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
arpcounterattack_enable="${arpcounterattack_enable-NO}"
arpcounterattack_pidfile="/var/run/arpCounterattack.pid"
. /etc/rc.subr
name="arpcounterattack"
rcvar=arpcounterattack_enable
command="%%PREFIX%%/sbin/arpCounterattack"
load_rc_config $name
: ${arpcounterattack_config="%%PREFIX%%/etc/arpCounterattack/arpCounterattack.conf"}
: ${arpcounterattack_flags="-c ${arpcounterattack_config}"}
pidfile="${arpcounterattack_pidfile}"
required_files="${arpcounterattack_config}"
case "${arpcounterattack_flags}" in
*-p\ *)
echo "ERROR: \$arpcounterattack_flags includes -p option." \
"Please use \$arpcounterattack_pidfile instead."
exit 1
;;
*)
arpcounterattack_flags="-p ${pidfile} ${arpcounterattack_flags}"
;;
esac
run_rc_command "$1"