From cb9eea1db0715cc8c944f54e61270d25502e3163 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sat, 20 Apr 2013 21:44:09 +0200 Subject: o Exposing 'status' and 'restart' commands again. --- bin/app-restart | 11 +++++++++++ bin/app-status | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100755 bin/app-restart create mode 100755 bin/app-status (limited to 'bin') diff --git a/bin/app-restart b/bin/app-restart new file mode 100755 index 0000000..768aea0 --- /dev/null +++ b/bin/app-restart @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e +set -u + +APPSH_HOME=$(cd $(dirname "$0")/.. && pwd) + +. $APPSH_HOME/lib/common +# HEADER END + +exec $APPSH_HOME/libexec/app-operate "restart" "$@" diff --git a/bin/app-status b/bin/app-status new file mode 100755 index 0000000..e36e1d6 --- /dev/null +++ b/bin/app-status @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e +set -u + +APPSH_HOME=$(cd $(dirname "$0")/.. && pwd) + +. $APPSH_HOME/lib/common +# HEADER END + +exec $APPSH_HOME/libexec/app-operate "status" "$@" -- cgit v1.2.3