aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tor/files/tor.init
blob: 0e9a5abe39b0521c6be5abb5ba090f4fd9768e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#! /bin/sh
#
# This is an init script for Tor on Openzaurus
#


test -f /usr/bin/tor || exit 0
test -f /etc/tor/tor-tsocks.conf || exit 0

case "$1" in
  start)
    echo -n "Starting tor daemon"
    start-stop-daemon --start --quiet --exec /usr/bin/tor > /dev/null &
    echo "."
    ;;
  stop)
    echo -n "Stopping tor daemon"
    start-stop-daemon --stop --quiet --exec /usr/bin/tor > /dev/null &
    echo "."
    ;;
  restart)
    echo -n "Stopping tor daemon"
    start-stop-daemon --stop --quiet --exec /usr/bin/tor > /dev/null &
    sleep 1
    echo -n "Starting tor daemon"
    start-stop-daemon --start --quiet --exec /usr/bin/tor > /dev/null &
    echo "."
    ;;
  start_socats)
    echo "Starting socats"
    # EXAMPLE 
    socat TCP4-LISTEN:6667,fork SOCKS4A:localhost:irc.freenode.net:6667,socksport=9050 &
    ;;
  stop_socats)
    echo "Stopping all socat processes!"
    killall socat
    ;;
  *)
    echo "Usage: /etc/init.d/tor {start|stop|restart|start_socats|stop_socats}"
    exit 1
esac

exit 0