11 lines
165 B
Plaintext
11 lines
165 B
Plaintext
|
#!/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
|
||
|
|