#!/bin/sh

if test -r /etc/debian-edu/config ; then
    . /etc/debian-edu/config
fi

# Only Main-Server got Nagios running
if echo "$PROFILE" | grep -q Main-Server ; then
    :
else
    exit 0
fi

if [ -x /usr/sbin/icinga ] ; then
    echo "success: $0: Found /usr/sbin/icinga binary."
else
    echo "error: $0: Missing /usr/sbin/icinga."
fi


