Bug fixes

This commit is contained in:
mathias 2019-08-06 17:00:52 +03:00
parent 557c941651
commit aa38aede7f

View file

@ -36,12 +36,10 @@ tmux new -d -s alivecheck "set -x; while true; do
sleep 12
if [ "$(env printf '\xFE' | nc -w 5 localhost 25565 | wc -m)" -eq 0 ] ||
[ "$(( $(date +%s) - $(tail -1 $HOME/logs/latest.log | (grep -oP '(?<=\[).*?(?=\])' || date +%T) | head -1 | date -f - +%s) ))" -gt 180 ]; then
if [ "$(pgrep java)" ]; then
kill -9 $(pgrep java)
fi
if [ "$(tail -20 $HOME/logs/latest.log | grep -c 'ERROR]: Requested chunk')" ]; then
if [ "$(tail -20 $HOME/logs/latest.log | grep -c 'ERROR]: Requested chunk')" -eq 1 ]; then
rm -rf $HOME/worlds/
fi
killall -9 java
fi
done"