From 7d29d2ef2a8bb2969c26c09356329bf2033bc72d Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 12 Nov 2004 17:31:42 +0000 Subject: [PATCH] Change init startup script to properly deal with tor printing stuff on startup. svn:r2816 --- trunk/debian/changelog | 4 +++- trunk/debian/tor.init | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/trunk/debian/changelog b/trunk/debian/changelog index f4101bc720..dc06cbb3ea 100644 --- a/trunk/debian/changelog +++ b/trunk/debian/changelog @@ -16,8 +16,10 @@ tor (0.0.8+0.0.9pre5-2) unstable; urgency=low * Remove /usr/bin/tor-control.py from the binary package, it is not really useful yet, and wasn't meant to be installed by default. + * Change init startup script to properly deal with tor + printing stuff on startup. - -- Peter Palfrader Fri, 12 Nov 2004 18:20:04 +0100 + -- Peter Palfrader Fri, 12 Nov 2004 18:30:50 +0100 tor (0.0.8+0.0.9pre5-1) unstable; urgency=low diff --git a/trunk/debian/tor.init b/trunk/debian/tor.init index dcbbe094d1..208cb761dc 100644 --- a/trunk/debian/tor.init +++ b/trunk/debian/tor.init @@ -48,12 +48,12 @@ case "$1" in if [ "$RUN_DAEMON" != "yes" ]; then echo "Not starting $DESC (Disabled in $DEFAULTSFILE)." else - echo -n "Starting $DESC: " + echo "Starting $DESC..." start-stop-daemon --start --quiet --oknodo \ --chuid debian-tor:debian-tor \ --pidfile $TORPID \ --exec $DAEMON -- $ARGS - echo "$NAME." + echo "done." fi ;; stop)