summaryrefslogtreecommitdiff
path: root/debian/tests/daemon
blob: 2a8b5e688124e0f00e46eec9f3092a376bcdd76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#------------------------
# Testing starter, charon
#------------------------
DAEMONS="starter charon"

for daemon in $DAEMONS; do
    if pidof -x $daemon > /dev/null; then
        echo "$daemon OK"
    else
        echo "ERROR: ${daemon} IS NOT RUNNING"
        exit 1
    fi
done