11 lines
165 B
Bash
Executable File
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
|
|
|