aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tor/files/tor.init
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/tor/files/tor.init')
-rwxr-xr-xrecipes/tor/files/tor.init8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/tor/files/tor.init b/recipes/tor/files/tor.init
index e421347440..0e9a5abe39 100755
--- a/recipes/tor/files/tor.init
+++ b/recipes/tor/files/tor.init
@@ -11,20 +11,20 @@ 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 &
+ 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 &
+ 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 &
+ 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 &
+ start-stop-daemon --start --quiet --exec /usr/bin/tor > /dev/null &
echo "."
;;
start_socats)