changeset 435:aae1f2906cea noffle

[svn] updated init script output
author godisch
date Tue, 24 Jun 2003 10:28:18 +0100
parents 460e242dec29
children 4426f4dc6e8b
files debian/changelog debian/init
diffstat 2 files changed, 9 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/debian/changelog	Tue Jun 24 10:24:33 2003 +0100
+++ b/debian/changelog	Tue Jun 24 10:28:18 2003 +0100
@@ -1,9 +1,9 @@
 noffle (1.1.4-9) unstable; urgency=low
 
-  * Improved debconf system, added ucf support, closes: #198118.
-  * Fixed update-inetd in postinst and prerm.
+  * Improved debconf system, added ucf support, closes: #197703.
+  * Improved output of /etc/init.d/noffle, closes: #198117.
+  * Fixed/explained handling of inetd.conf, closes: #198118.
   * Added patch, ucf, and libgdbmg1-dev option to (build-)dependencies.
-  * Removed lintian override regarding debconf-dependency.
 
  -- Martin A. Godisch <godisch@debian.org>  Mon, 23 Jun 2003 10:52:05 +0200
 
--- 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