#!/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="/usr/local/sbin/${name}"

load_rc_config $name

pidfile="${dansguardian_pidfile}"

run_rc_command "$1"
