aboutsummaryrefslogtreecommitdiffstats
path: root/common/scripts/service-check-nogfx.sh
blob: 62d1b3d48344b057f0a6517f14a60db203d8884e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

REQUIREDSOCKETS="cynara.socket security-manager.socket"
REQUIREDSERVICES="afm-system-daemon.service afm-user-daemon.service connman.service"

ALL="${REQUIREDSOCKETS} ${REQUIREDSERVICES}"
RESULT="unknown"

for i in ${ALL} ; do
    echo -e "\n########## Test for service ${i} being active ##########\n"
    systemctl is-active ${i} >/dev/null 2>&1
    if [ $? -eq 0 ] ; then
        RESULT="pass"
    else
        RESULT="fail"
    fi
    lava-test-case ${i} --result ${RESULT}

    if [ x"fail" == x"${RESULT}" ] ; then
        systemctl status ${i} || true
    fi
    echo -e "\n########## Result for service ${i} : $RESULT ##########\n"
done

exit 0