You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-proxy/dansguardian/files/dansguardian.init

33 lines
958 B

#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="reload"
depend() {
need net
use dns \
squid apache2 bfilter mman junkbuster oops polipo privoxy tinyproxy wwwoffled
#dansguardian could be used in conjuction with any of the above web proxies
provide dansguardian
}
start() {
ebegin "Starting DansGuardian"
start-stop-daemon --start --background --pidfile /var/run/dansguardian.pid --exec /usr/sbin/dansguardian --progress --quiet
eend $?
}
stop() {
ebegin "Stopping DansGuardian"
start-stop-daemon --stop --pidfile /var/run/dansguardian.pid --exec /usr/sbin/dansguardian --progress --quiet
eend $?
}
reload() {
ebegin "Leaving current connections open. Reloading filter group config files."
/usr/sbin/dansguardian -g
eend $?
}