#!/bin/sh
#------------
# Testing tgt
#------------
DAEMON=tgtd

if pidof -x $DAEMON > /dev/null; then
    echo "OK"
else
    echo "ERROR: ${DAEMON} IS NOT RUNNING"
    exit 1
fi
