mirror of
https://github.com/ThunixdotNet/monurbox.git
synced 2026-01-24 12:00:19 +00:00
13 lines
170 B
Bash
Executable File
13 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
export SITE=$1
|
|
|
|
./plugins/check_proc minetestserver > /dev/null
|
|
if [ $? -ne "0" ]
|
|
then
|
|
echo -e $SITE"\tDOWN"
|
|
exit 1
|
|
else
|
|
echo -e $SITE"\tGOOD"
|
|
exit 0
|
|
fi
|