diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-17 10:55:23 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-17 10:55:23 +0200 |
commit | c5401a6d595a595ee16ee6aede55fb016b9cfdfd (patch) | |
tree | 93d9bb33837bc1cea44ba4ca3c8ce9f8882ab523 /.app/lib/app-operate | |
parent | a3ce3f7eabbb746aa9ced430bcd55391742c738b (diff) | |
download | app.sh-c5401a6d595a595ee16ee6aede55fb016b9cfdfd.tar.gz app.sh-c5401a6d595a595ee16ee6aede55fb016b9cfdfd.tar.bz2 app.sh-c5401a6d595a595ee16ee6aede55fb016b9cfdfd.tar.xz app.sh-c5401a6d595a595ee16ee6aede55fb016b9cfdfd.zip |
o Proper implementation of start, stop and status.
Diffstat (limited to '.app/lib/app-operate')
-rw-r--r-- | .app/lib/app-operate | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.app/lib/app-operate b/.app/lib/app-operate index 7789939..8c9692b 100644 --- a/.app/lib/app-operate +++ b/.app/lib/app-operate @@ -53,14 +53,15 @@ run_control() { set +x set -e - case $ret in - 0) - echo "Method ${method} completed successfully for $name/$instance" - ;; - *) - echo "Error running method ${method} for $name/$instance" - ;; - esac +# case $ret in +# 0) +# echo "Method ${method} completed successfully for $name/$instance" +# ;; +# *) +# echo "Error running method ${method} for $name/$instance" +# ;; +# esac + exit $ret ) } |