#! /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
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/proxytest
NAME=anon-proxy
DESC="Anonymising Proxy Service"

echo "!!! YOU HAVE TO CONFIGURE THE LOCAL PROXY PORT FIRST! CALL \"dpkg-reconfigure anon-proxy\" !!!" && exit 1
OPTIONS="-j -p #PORT# -n 132.199.134.2:3000 -a -d"

test -f $DAEMON || exit 0

set -e

case "$1" in
  start)
	echo -n "Starting $DESC: $NAME"
	start-stop-daemon --start --quiet -c nobody:nogroup --pidfile /var/run/$NAME.pid \
		--exec $DAEMON -- $OPTIONS > /dev/null 2>&1
	echo "."
	;;
  stop)
	echo -n "Stopping $DESC: $NAME"
	/usr/bin/killall -9 proxytest || exit 0
	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 \
		/var/run/$NAME.pid --exec $DAEMON
	sleep 1
	start-stop-daemon --start --quiet --pidfile \
		/var/run/$NAME.pid --exec $DAEMON
	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
