Package: linuxlogo
Version: 4.09-2
Severity: minor
Tags: patch
Attached is a patch to make the initscript conform more closely to the
convention for initscript output messages:
$ sudo ./linuxlogo restart
Updating the operating system logo: linuxlogo.
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages linuxlogo depends on:
ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an
-- debconf information:
* linuxlogo/installation:
* linuxlogo/mode: Login
--- linuxlogo_ORIG 2004-12-03 21:44:16.000000000 +0100
+++ linuxlogo 2005-02-11 21:13:56.000000000 +0100
@@ -13,7 +13,7 @@
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/linux_logo
NAME=linuxlogo
-DESC=linuxlogo
+DESC="operating system logo"
test -x $DAEMON || exit 0
@@ -27,7 +27,7 @@
stop)
;;
restart|force-reload)
- echo -n "Updating the $DESC... "
+ echo -n "Updating the ${DESC}: "
"$DAEMON" -f > /etc/issue.linuxlogo
"$DAEMON" -a -f > /etc/issue.linuxlogo.ascii
for F in /etc/issue.linuxlogo /etc/issue.linuxlogo.ascii
@@ -44,7 +44,7 @@
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload|display}" >&2
- exit 1
+ exit 3
;;
esac