Tmux might be missing env variables

This commit is contained in:
mathias 2019-08-06 19:57:32 +03:00
parent 347306403f
commit 079c84a72b

View file

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