diff --git a/debian/changelog b/debian/changelog index 65caf235b..f29a3376a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/debian/tor.init b/debian/tor.init index 99c550a88..af4b7bfef 100644 --- a/debian/tor.init +++ b/debian/tor.init @@ -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)