Improve alive checker

This commit is contained in:
mathiascode 2019-12-22 20:59:31 +02:00
parent 87dda2eae8
commit 874a0db1a1

View file

@ -15,11 +15,12 @@ while true; do
# 3 minutes, kill the server
if [ "$(env printf '\xFE' | nc -w 5 localhost 25565 | wc -m)" -eq 0 ] ||
[ "$(( $(date +%s) - $(date -r $logfile +%s) ))" -gt 180 ]; then
[ "$(( $(date +%s) - $(date -r $logfile +%s) ))" -gt 180 ] ||
[ "$(tail -5 $logfile | grep -cE 'Server thread|Paper Watchdog Thread|Async Chat Thread')" -eq 0 ]; then
if [ "$(tail -20 $logfile | grep -c 'ERROR]: Requested chunk')" -eq 1 ]; then
rm -rf $HOME/worlds/
fi
pkill -9 java
fi
fi
done
done