Tweak a few error messages in the init script to use the proper variables (not

that it should matter, the Right One has the same value, but still) and to list
more possible error reasons.


svn:r16038
This commit is contained in:
Peter Palfrader 2008-07-17 23:57:57 +00:00
parent fed52f329a
commit 240bb9487e
2 changed files with 12 additions and 4 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
tor (0.2.0.30-X) unstable; urgency=low
* Tweak a few error messages in the init script to use the proper variables
(not that it should matter, the Right One has the same value, but still)
and to list more possible error reasons.
-- Peter Palfrader <weasel@debian.org> Fri, 18 Jul 2008 01:56:04 +0200
tor (0.2.0.30-2) unstable; urgency=low
* Stop requiring that the binary in /usr/sbin/tor is still the same as the

8
debian/tor.init vendored
View File

@ -151,9 +151,9 @@ case "$1" in
echo "$NAME."
elif kill -0 $pid 2>/dev/null
then
echo "FAILED (Is $pid not $NAME?)."
echo "FAILED (Is $pid not $DAEMON_NAME or not running as $DAEMON_USER?)."
else
echo "FAILED ($DAEMON died: process $pid not running; or permission denied)."
echo "FAILED ($DAEMON_NAME died: process $pid not running; or permission denied)."
fi
;;
reload|force-reload)
@ -172,9 +172,9 @@ case "$1" in
echo "$NAME."
elif kill -0 $pid 2>/dev/null
then
echo "FAILED (Is $pid not $NAME?)."
echo "FAILED (Is $pid not $DAEMON_NAME or not running as $DAEMON_USER?)."
else
echo "FAILED ($DAEMON died: process $pid not running; or permission denied)."
echo "FAILED ($DAEMON_NAME died: process $pid not running; or permission denied)."
fi
;;
restart)