#! /bin/sh
#
# anon-proxy	File to start the an.on proxy at startup.
#		Written by David Spreen <netzwurm@debian.org>,
#               based on the skeleton script by 
#               Miquel van Smoorenburg <miquels@cistron.nl>.
#		Modified for Debian GNU/Linux
#		by Ian Murdock <imurdock@gnu.ai.mit.edu>,
#               customized by dh-make.
#
# Version:	@(#)anon-proxy  1.0  15-Sep-2002  netzwurm@debian.org
#

[ -f /etc/default/anon-proxy ] && . /etc/default/anon-proxy

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/proxytest
NAME=anon-proxy
DESC="Anonymising Proxy Service"
USER=anon-proxy
GROUP=nogroup
PIDFILE=/var/run/anon-proxy/proxytest.pid

[ -z "$CASCADE" ] && CASCADE="132.199.134.2:3000"
[ -z "$PORT" ] && PORT="4001"
[ -z "$OPTIONS" ] && OPTIONS="-a -d -j -n $CASCADE -p $PORT"

test -f $DAEMON || exit 0

set -e

case "$1" in
  start)
	echo -n "Starting $DESC: $NAME"
	start-stop-daemon --start --quiet -c $USER:$GROUP --pidfile $PIDFILE \
                --exec $DAEMON -- $OPTIONS  > /dev/null 2>&1 || true

	echo "."
	;;
  stop)
	echo -n "Stopping $DESC: $NAME"
	start-stop-daemon --quiet --stop --pidfile $PIDFILE  \
                --exec $DAEMON || true 
	echo "."
	;;
  #reload)
	#
	#	If the daemon can reload its config files on the fly
	#	for example by sending it SIGHUP, do it here.
	#
	#	If the daemon responds to changes in its config file
	#	directly anyway, make this a do-nothing entry.
	#
	# echo "Reloading $DESC configuration files."
	# start-stop-daemon --stop --signal 1 --quiet --pidfile \
	#	/var/run/$NAME.pid --exec $DAEMON
  #;;
  restart|force-reload)
	#
	#	If the "reload" option is implemented, move the "force-reload"
	#	option to the "reload" entry above. If not, "force-reload" is
	#	just the same as "restart".
	#
	echo -n "Restarting $DESC: $NAME"
	start-stop-daemon --stop --quiet --pidfile $PIDFILE \
                --exec $DAEMON || true 
	sleep 1
	start-stop-daemon --start --quiet -c $USER:$GROUP --pidfile $PIDFILE \
		--exec $DAEMON -- $OPTIONS  > /dev/null 2>&1 || true
	echo "."
	;;
  *)
	N=/etc/init.d/$NAME
	# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
	echo "Usage: $N {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0
