bin/nagios_status
2024-08-12 15:29:43 +02:00

11 lines
165 B
Bash
Executable File

#!/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