Debug test

This commit is contained in:
mathias 2019-08-06 16:26:32 +03:00
parent 9c72d7ba49
commit 6e37df53d3

View file

@ -33,13 +33,14 @@ done'
#sleep 90
tmux new -d -s alivecheck 'while true; do
sleep 120
if [ "$(env printf \"\xFE\" | nc -w 5 localhost 25565 | wc -m)" -eq 0 ] ||
set -x
sleep 1
if [ "$(env printf \"\xFE\" | nc -w 5 localhost 25565 | wc -m)" -eq 1 ] ||
[ "$(( $(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\")" ]; then
rm -rf $HOME/worlds/
fi
fi