diff options
author | Peter Palfrader <peter@palfrader.org> | 2004-11-12 17:31:42 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2004-11-12 17:31:42 +0000 |
commit | ecf21bda3f721929ba2d810dc3861897ed660f6a (patch) | |
tree | e7fb0b41380f3a08472c2f1fd891c6b3b1dca553 /debian/tor.init | |
parent | 26652ef72c245a9a6503d8b168e7e3f79944b0a4 (diff) | |
download | tor-ecf21bda3f721929ba2d810dc3861897ed660f6a.tar.gz tor-ecf21bda3f721929ba2d810dc3861897ed660f6a.zip |
Change init startup script to properly deal with tor printing stuff on startup.
svn:r2816
Diffstat (limited to 'debian/tor.init')
-rw-r--r-- | debian/tor.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/tor.init b/debian/tor.init index dcbbe094d1..208cb761dc 100644 --- a/debian/tor.init +++ b/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) |