]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove echo -n to make start script slightly more readable on boot.
authorAndrew Lewman <andrew@torproject.org>
Sat, 10 Jun 2006 05:37:17 +0000 (05:37 +0000)
committerAndrew Lewman <andrew@torproject.org>
Sat, 10 Jun 2006 05:37:17 +0000 (05:37 +0000)
svn:r6595

contrib/suse/tor.sh.in

index f1386772c7068ff3762b8783424ef0941e8ac332..4afb60dcc6eec8e38345b18dd6e04cfd86b0f9ef 100644 (file)
@@ -63,7 +63,7 @@ fi
 case "$1" in
 
     start)
-    echo -n "Starting tor daemon"
+    echo "Starting tor daemon"
     ## Start daemon with startproc(8). If this fails
     ## the echo return value is set appropriate.
 
@@ -73,21 +73,21 @@ case "$1" in
     ;;
 
     stop)
-    echo -n "Stopping tor daemon" 
+    echo "Stopping tor daemon" 
     startproc -f $TORCTL stop
     # Remember status and be verbose
     rc_status -v
     ;;
 
     restart)
-    echo -n "Restarting tor daemon" 
+    echo "Restarting tor daemon" 
     startproc -f $TORCTL restart
     # Remember status and be verbose
     rc_status -v
     ;;
 
     reload)
-    echo -n "Reloading tor daemon" 
+    echo "Reloading tor daemon" 
     startproc -f $TORCTL reload
     # Remember status and be verbose
     rc_status -v