fix init.d script output
authorTero Marttila <terom@fixme.fi>
Sat, 19 Sep 2009 22:58:13 +0300
changeset 29 ee84c56d5019
parent 25 6c0a53a512d8
child 30 33527d91b6f6
fix init.d script output
docs/example-init.d-script
--- a/docs/example-init.d-script	Wed Sep 17 19:28:42 2008 +0300
+++ b/docs/example-init.d-script	Sat Sep 19 22:58:13 2009 +0300
@@ -37,14 +37,15 @@
     stop)
         echo -n "Stopping fixbot:"
         
-        echo "logwatch... "	
+        echo -n "logwatch... "	
         start-stop-daemon --stop --quiet    \
             --pidfile "$pidfile_logwatch"
 
-        echo "nexus... "
+        echo -n "nexus... "
         start-stop-daemon --stop --quiet    \
             --pidfile "$pidfile_nexus"
-
+        
+        echo "done"
     ;;
 
     restart)