summaryrefslogtreecommitdiffstats
path: root/network/tor/rc.tor
blob: d7ef906aae51e82a318b6d35af17686059501d33 (plain)

#!/bin/sh

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