mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Remove echo -n to make start script slightly more readable on boot.
svn:r6595
This commit is contained in:
parent
14687fc443
commit
538de4043a
@ -63,7 +63,7 @@ fi
|
||||
case "$1" in
|
||||
|
||||
start)
|
||||
echo -n "Starting tor daemon"
|
||||
echo "Starting tor daemon"
|
||||
## Start daemon with startproc(8). If this fails
|
||||
## the echo return value is set appropriate.
|
||||
|
||||
@ -73,21 +73,21 @@ case "$1" in
|
||||
;;
|
||||
|
||||
stop)
|
||||
echo -n "Stopping tor daemon"
|
||||
echo "Stopping tor daemon"
|
||||
startproc -f $TORCTL stop
|
||||
# Remember status and be verbose
|
||||
rc_status -v
|
||||
;;
|
||||
|
||||
restart)
|
||||
echo -n "Restarting tor daemon"
|
||||
echo "Restarting tor daemon"
|
||||
startproc -f $TORCTL restart
|
||||
# Remember status and be verbose
|
||||
rc_status -v
|
||||
;;
|
||||
|
||||
reload)
|
||||
echo -n "Reloading tor daemon"
|
||||
echo "Reloading tor daemon"
|
||||
startproc -f $TORCTL reload
|
||||
# Remember status and be verbose
|
||||
rc_status -v
|
||||
|
Loading…
Reference in New Issue
Block a user