1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<html><head><title>Debian bug report logs - #15958</title>
<link rev="made" href="mailto:iwj10@hermes.cam.ac.uk">
</head><body><h1>Debian bug report logs - #15958<br>
apache: /etc/init.d/apache console output non-complaint with Policy v 2.3.0.1</h1>Package: <A href="../pa/lapache.html"><strong>apache</strong></A>;
Reported by: apharris@onShore.com; dated Mon, 15 Dec 1997 06:03:01 GMT;
Maintainer for apache is
<A href="../ma/lJohnie_Ingram,johnie,debian.org,.html">Johnie Ingram <johnie@debian.org></A>.
<hr>
<h2>Message received at submit@bugs.debian.org:</h2><br>
<pre>
Received: (at submit) by bugs.debian.org; 15 Dec 1997 05:58:38 +0000
Received: (qmail 5073 invoked from network); 15 Dec 1997 05:58:37 -0000
Received: from ts2port47.port.net (HELO burrito.onshore.com) (mail@ts2port47.port.net@207.38.248.175)
by 205.229.104.5 with SMTP; 15 Dec 1997 05:58:37 -0000
Received: from apharris by burrito.onshore.com with local (Exim 1.80 #1)
id 0xhTem-0001xO-00 (Debian); Mon, 15 Dec 1997 01:05:32 -0500
From: <apharris@burrito.onshore.com>
Subject: apache: /etc/init.d/apache console output non-complaint with Policy v 2.3.0.1
To: submit@bugs.debian.org
X-Mailer: bug 3.1.0
Reply-To: apharris@onShore.com
Message-Id: <E0xhTem-0001xO-00@burrito.onshore.com>
Date: Mon, 15 Dec 1997 01:05:32 -0500
Package: apache
Version: 1.3b3-6
The included diff makes /etc/init.d/apache console output comply
with Debian Policy v.2.3.0.1.
Actually I'm not so sure about what I did to the 'reload-modules'
case but hey, here's to consistency.
--- apache.orig Mon Dec 15 00:54:51 1997
+++ apache Mon Dec 15 00:59:00 1997
@@ -16,42 +16,42 @@
case "$1" in
start)
- echo -n "Starting Apache webserver..."
+ echo -n "Starting web server: apache"
test -u /usr/lib/apache/suexec && echo
if start-stop-daemon --start --quiet --pidfile $PIDFILE \
--exec $DAEMON
then
- test -u /usr/lib/apache/suexec || echo "done."
+ test -u /usr/lib/apache/suexec || echo "."
else
- test -u /usr/lib/apache/suexec || echo "failed."
+ test -u /usr/lib/apache/suexec || echo " failed to start."
fi
;;
stop)
- echo -n "Stopping Apache webserver..."
+ echo -n "Stopping web server: apache"
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
- echo "done."
+ echo "."
;;
reload)
- echo -n "Reloading Apache configuration files..."
+ echo -n "Reloading web server configuration files: apache"
start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE
- echo "done."
+ echo "."
;;
reload-modules)
- echo -n "Stopping Apache webserver..."
+ echo -n "Stopping web server: apache"
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
- echo -n "sleeping..."
+ echo "."
sleep 4
- echo -n "starting again..."
+ echo -n "Starting web server: apache"
test -u /usr/lib/apache/suexec && echo
if start-stop-daemon --start --quiet --pidfile $PIDFILE \
--exec $DAEMON
then
- test -u /usr/lib/apache/suexec || echo "done."
+ test -u /usr/lib/apache/suexec || echo "."
else
- echo "failed."
+ echo " failed to start."
fi
;;
-- System Information
Debian Release: 1.3 (hammified)
Kernel Version: Linux burrito 2.0.32 #1 Thu Nov 27 11:35:28 EST 1997 i586 unknown
Versions of the packages apache depends on:
libc6 Version: 2.0.5c-0.1
mime-support Version: 2.12-1
perl Version: 5.004.04-3
</pre>
<hr>
<strong>Acknowledgement sent</strong> to <code>apharris@onShore.com</code>:<br>
New bug report received and forwarded. Copy sent to <code>Johnie Ingram <johnie@debian.org></code>.
<em><A href="../15/15958-b.html#m2">Full text</A> available.</em><hr>
<strong>Report forwarded</strong> to <code>debian-bugs-dist@lists.debian.org, Johnie Ingram <johnie@debian.org></code>:<br>
<code>Bug#15958</code>; Package <code>apache</code>.
<em><A href="../15/15958-b.html#m1">Full text</A> available.</em><hr>
<address>
<A href="http://www.cl.cam.ac.uk/users/iwj10/">Ian Jackson</A> /
<A href="mailto:owner@bugs.debian.org">owner@bugs.debian.org</A>,
through the <A href="../../">Debian bug tracking mechanism</A>
</address>
Last modified:
<!--timestamp-->
13:39:02 GMT Wed 31 Dec
<!--/timestamp-->
(<A href="../ix/zstamp.html">timestamp page</A> available).
<!--version 3.1-->
</body></html>
|