summaryrefslogtreecommitdiffstats
path: root/network/tor/rc.tor
blob: 5c2d99eb0a37fcdaf26e5c54189cd96ca85f7185 (plain)
#!/bin/bash

PIDFILE="/var/lib/tor/tor.pid"

tor_start() {
	echo -n "Starting tor: "
	if [ ! -f $PIDFILE ]; then
		/usr/bin/tor 1> /dev/null
		echo "OK"
	else
		echo -n "Removing stale lock.. "
		rm -f $PIDFILE
		/usr/bin/tor 1> /dev/null
		echo "OK"
	fi
}

tor_stop() {
	echo -n "Stopping tor: "
	if [ -f $PIDFILE ]; then
		killall tor &> /dev/null
		rm -f $PIDFILE
		echo "OK"
	else
		echo "Not Running"
	fi
}

case "$1" in
	start)
		tor_start
		;;
	stop)
		tor_stop
		;;
	restart)
		tor_stop
		tor_start
		;;
	*)
		echo "Usage: rc.tor {start|stop|restart}"
esac