A bin folder, holding helpfull scripts and commands
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
12345678910 |
- #!/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
|