Final tests before deploying

This commit is contained in:
mathias 2019-08-06 16:50:59 +03:00
parent dae01b36f6
commit 557c941651

View file

@ -33,9 +33,9 @@ done'
#sleep 90
tmux new -d -s alivecheck "set -x; while true; do
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
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