diff options
Diffstat (limited to 'common/scripts/service-check.sh')
-rwxr-xr-x | common/scripts/service-check.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/scripts/service-check.sh b/common/scripts/service-check.sh index 6ffa6f6..4dc0a25 100755 --- a/common/scripts/service-check.sh +++ b/common/scripts/service-check.sh @@ -7,12 +7,15 @@ ALL="${REQUIREDSOCKETS} ${REQUIREDSERVICES}" RESULT="unknown" for i in ${ALL} ; do + echo "########## Test for service ${i} being active ##########" systemctl is-active ${i} >/dev/null 2>&1 if [ $? -eq 0 ] ; then RESULT="pass" else + systemctl status ${i} || true RESULT="fail" fi + echo "########## Result for service ${i} : $RESULT ##########" lava-test-case ${i} --result ${RESULT} done |