summaryrefslogtreecommitdiff
blob: 02736e8ac7bbcf9126f3bfa77b1d44a0478c018b (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
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/files/tor.initd,v 1.4 2005/09/11 23:14:16 humpback Exp $

depend() {
        need net
}

checkconfig() {
        # first check that it exists
        if [ ! -f /etc/tor/torrc ] ; then
                eerror "You need to setup /etc/tor/torrc first"
                eerror "Example is in /etc/tor/torrc.sample"
                return 1
        fi
}



start() {
	checkconfig || return 1
        ebegin "Starting Tor"
        HOME=/var/lib/tor
        start-stop-daemon --start --quiet --chuid tor --exec /usr/bin/tor -- --runasdaemon 1
        eend $?
}

stop() {
        ebegin "Stopping Tor"
        start-stop-daemon --stop --quiet --chuid tor --exec /usr/bin/tor
        eend $?
}