Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 189724
Collapse All | Expand All

(-)/etc/init.d/tor (-2 / +2 lines)
Lines 35-47 Link Here
35
	checkconfig || return 1
35
	checkconfig || return 1
36
        ebegin "Starting Tor"
36
        ebegin "Starting Tor"
37
        HOME=/var/lib/tor
37
        HOME=/var/lib/tor
38
        start-stop-daemon --start --pidfile "${PIDFILE}" --quiet --chuid tor --exec /usr/bin/tor  -- --runasdaemon 1 --PidFile "${PIDFILE}" &> /dev/null
38
        start-stop-daemon --start --quiet --chuid tor --exec /usr/bin/tor -- --runasdaemon 1 &> /dev/null
39
        eend $?
39
        eend $?
40
}
40
}
41
41
42
stop() {
42
stop() {
43
        ebegin "Stopping Tor"
43
        ebegin "Stopping Tor"
44
        start-stop-daemon --stop --pidfile "${PIDFILE}" --chuid tor --exec /usr/bin/tor -- --PidFile "${PIDFILE}"
44
        start-stop-daemon --stop --quiet --chuid tor --exec /usr/bin/tor
45
        eend $?
45
        eend $?
46
}
46
}
47
47

Return to bug 189724