diff debian/init @ 435:aae1f2906cea noffle

[svn] updated init script output
author godisch
date Tue, 24 Jun 2003 10:28:18 +0100
parents 863270a06774
children fc3e4fc0a88d
line wrap: on
line diff
--- a/debian/init	Tue Jun 24 10:24:33 2003 +0100
+++ b/debian/init	Tue Jun 24 10:28:18 2003 +0100
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: init 523 2003-04-18 19:52:16Z godisch $
+# $Id: init 578 2003-06-24 09:28:18Z godisch $
 
 set -e
 
@@ -37,16 +37,18 @@
 	else
 		$NOFFLE --online
 	fi
+	echo "."
 	;;
 stop)
 	echo -n "Switching offline news server into offline mode: "
 	$NOFFLE --offline
+	echo "."
 	;;
 restart)
-	echo -n "Restarting offline news server: noffle"
+	echo "No action done, as noffle is restarted upon each query."
 	;;
 reload|force-reload)
-	echo -n "Reloading offline news server configuration: noffle"
+	echo "No action done, as noffle reloads its configuration upon each query."
 	;;
 status)
 	help
@@ -55,12 +57,12 @@
 online|offline)
 	echo -n "Switching offline news server into $1 mode: "
 	$NOFFLE --$1
+	echo "."
 	;;
 *)
 	help
 	exit 2 # LSB: invalid or excess argument(s)
 	;;
 esac
-echo "."
 
 exit 0