[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Change init startup script to properly deal with tor printi...
Update of /home/or/cvsroot/debian
In directory moria.mit.edu:/tmp/cvs-serv31193/debian
Modified Files:
changelog tor.init
Log Message:
Change init startup script to properly deal with tor printing stuff on startup.
Index: changelog
===================================================================
RCS file: /home/or/cvsroot/debian/changelog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- changelog 12 Nov 2004 17:24:28 -0000 1.73
+++ changelog 12 Nov 2004 17:31:42 -0000 1.74
@@ -16,8 +16,10 @@
* 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 <weasel@debian.org> Fri, 12 Nov 2004 18:20:04 +0100
+ -- Peter Palfrader <weasel@debian.org> Fri, 12 Nov 2004 18:30:50 +0100
tor (0.0.8+0.0.9pre5-1) unstable; urgency=low
Index: tor.init
===================================================================
RCS file: /home/or/cvsroot/debian/tor.init,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- tor.init 10 Nov 2004 03:42:06 -0000 1.7
+++ tor.init 12 Nov 2004 17:31:42 -0000 1.8
@@ -48,12 +48,12 @@
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)