diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-17 15:33:17 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-17 15:33:17 +0200 |
commit | 3d9342dfdad8fb8e350227666a1dc2c658be8e08 (patch) | |
tree | 5aea09944ac3ff422fdfe5ddf359835d8ec3d4b1 | |
parent | d8890e75cf83504320ad12b657112cd5347fb600 (diff) | |
download | app.sh-3d9342dfdad8fb8e350227666a1dc2c658be8e08.tar.gz app.sh-3d9342dfdad8fb8e350227666a1dc2c658be8e08.tar.bz2 app.sh-3d9342dfdad8fb8e350227666a1dc2c658be8e08.tar.xz app.sh-3d9342dfdad8fb8e350227666a1dc2c658be8e08.zip |
o Better output.
-rwxr-xr-x | .app/lib/pid-method | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.app/lib/pid-method b/.app/lib/pid-method index 15e85ff..a3e9cff 100755 --- a/.app/lib/pid-method +++ b/.app/lib/pid-method @@ -73,7 +73,7 @@ method_stop() { esac signal="-9" - echo -n "Sending kill $signal to $PID, waiting for shutdown: " + echo -n "Sending kill $signal to $PID, waiting for shutdown" kill $signal $PID while [ "`do_status`" == "running" ] @@ -82,7 +82,7 @@ method_stop() { echo -n "." done - echo "OK" + echo " OK" rm -f $PID_FILE return 0 } |