summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2004-07-08 01:22:06 +0000
committerPeter Palfrader <peter@palfrader.org>2004-07-08 01:22:06 +0000
commitb39524c9e888d81c4fbe103a55476a546e859ffc (patch)
tree6267904a8b202b60e1fb128d1e382fb54f23df63
parent5067602922e4f0259e86d0c190cb9e81b3daa9cf (diff)
downloadtor-b39524c9e888d81c4fbe103a55476a546e859ffc.tar.gz
tor-b39524c9e888d81c4fbe103a55476a546e859ffc.zip
* New upstream release: Fixes another instance of that remote crash bug.
* Mention another reason why stop/reload may fail in the init script. svn:r2020
-rw-r--r--changelog8
-rw-r--r--tor.init4
2 files changed, 10 insertions, 2 deletions
diff --git a/changelog b/changelog
index bf4a8eee17..a8366658a8 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,11 @@
+tor (0.0.7.2-1) unstable; urgency=medium
+
+ * New upstream release.
+ Fixes another instance of that remote crash bug.
+ * Mention another reason why stop/reload may fail in the init script.
+
+ -- Peter Palfrader <weasel@debian.org> Thu, 8 Jul 2004 03:21:32 +0200
+
tor (0.0.7.1-1) unstable; urgency=medium
* New upstream release.
diff --git a/tor.init b/tor.init
index 63f0ac4473..640a5e88c8 100644
--- a/tor.init
+++ b/tor.init
@@ -71,7 +71,7 @@ case "$1" in
then
echo "FAILED (Is $pid not $NAME? Is $DAEMON a different binary now?)."
else
- echo "FAILED ($DAEMON died: process $pid not running)."
+ echo "FAILED ($DAEMON died: process $pid not running; or permission denied)."
fi
;;
reload|force-reload)
@@ -87,7 +87,7 @@ case "$1" in
then
echo "FAILED (Is $pid not $NAME? Is $DAEMON a different binary now?)."
else
- echo "FAILED ($DAEMON died: process $pid not running)."
+ echo "FAILED ($DAEMON died: process $pid not running; or permission denied)."
fi
;;
restart)