aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-11-28 23:19:48 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-11-28 23:20:16 +0100
commit3352c55f6148756694b6be650ae662c7dd422df1 (patch)
tree636df1f46cce721812f2f857877f574268a1506c
parent3745cee489b181d3860f87ff1995353eddb456b0 (diff)
Call info ps and status in the context of the app user
We need to call the info and status call under the context of user under which the app runs. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I25abff89db22c5effb6addfbc59ec30575aae2ed
-rwxr-xr-xcommon/scripts/application-lifecycle.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/scripts/application-lifecycle.sh b/common/scripts/application-lifecycle.sh
index 998391d..3d4befa 100755
--- a/common/scripts/application-lifecycle.sh
+++ b/common/scripts/application-lifecycle.sh
@@ -108,7 +108,7 @@ do
if [ ! -z "$NAMEID" ];then
echo "DEBUG: $WGTNAME already installed as $NAMEID"
# need to kill then deinstall
- afm-util ps | grep -q $WGTNAME
+ afm-util ps --all | grep -q $WGTNAME
if [ $? -eq 0 ];then
echo "DEBUG: kill $WGTNAME"
afm-util kill $WGTNAME
@@ -174,7 +174,7 @@ do
echo "DEBUG: end of list"
fi
- afm-util info $NAMEID
+ do_afm_util info $NAMEID
if [ $? -ne 0 ];then
echo "ERROR: afm-util info"
lava-test-case afm-util-info-$WGTNAME --result fail
@@ -204,7 +204,7 @@ do
echo "DEBUG: Get RID for $NAMEID"
PSLIST="pslist"
- afm-util ps > $PSLIST
+ afm-util ps --all > $PSLIST
if [ $? -ne 0 ];then
echo "ERROR: afm-util ps"
lava-test-case afm-util-ps-$WGTNAME --result fail
@@ -217,7 +217,7 @@ do
RID="$(cat rid)"
echo "DEBUG: status $NAMEID ($RID)"
- afm-util status $RID
+ do_afm_util status $RID
if [ $? -ne 0 ];then
echo "ERROR: afm-util status"
lava-test-case afm-util-status-$WGTNAME --result fail