#!/bin/sh
#
BASEDIR=$(dirname $0)

if [ $# -eq 0 ]; then
    python3 $BASEDIR/nagios.src/status.py nagios.home
else
    python3 $BASEDIR/nagios.src/status.py $*
fi