Escape test

This commit is contained in:
mathias 2019-08-06 16:16:17 +03:00
parent 1a7b087006
commit 5e6402c20d

View file

@ -30,19 +30,19 @@ tmux new -d -s schematics 'while true; do
sleep 1
done'
sleep 90
#sleep 90
tmux new -d -s alivecheck 'while true; do
tmux new -d -s alivecheck 'bash -x \"while true; do
sleep 120
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 [ "$(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\")" ]; then
rm -rf $HOME/worlds/
fi
fi
done'
done\"'
sleep infinity