summaryrefslogtreecommitdiffstats
path: root/common/scripts/service-check.sh
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-10-10 23:06:21 +0200
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-10-10 23:06:21 +0200
commita2a853be927de72bf582efb8da256159f5aeaf68 (patch)
treec5e164230b1a2af0d42f85ef670a104397478c38 /common/scripts/service-check.sh
parentb3186538163e873fd58986184586ac5a4463fd17 (diff)
Prepare the nogfx variant of the service check
and enhance verbosity. Change-Id: Ia95a6236ffc4229703714ad58b70b21c00884c5c Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'common/scripts/service-check.sh')
-rwxr-xr-xcommon/scripts/service-check.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/common/scripts/service-check.sh b/common/scripts/service-check.sh
deleted file mode 100755
index 4dc0a25..0000000
--- a/common/scripts/service-check.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-REQUIREDSOCKETS="cynara.socket dbus.socket security-manager.socket"
-REQUIREDSERVICES="afm-system-daemon.service afm-user-daemon.service connman.service ofono.service weston.service HomeScreen.service lightmediascanner.service bluetooth.service"
-
-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
-
-exit 0 \ No newline at end of file