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.
31 lines
663 B
Bash
31 lines
663 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: dansguardian
|
|
# REQUIRE: NETWORKING SERVERS squid
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these dansguardian_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/dansguardian
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
# dansguardian_enable="YES"
|
|
# dansguardian_flags="<set as needed>"
|
|
|
|
dansguardian_enable=${dansguardian_enable:-"NO"}
|
|
dansguardian_pidfile=${dansguardian_pidfile:-"/var/run/dansguardian.pid"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dansguardian"
|
|
rcvar=dansguardian_enable
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
|
|
pidfile="${dansguardian_pidfile}"
|
|
|
|
run_rc_command "$1"
|