chequear si hay un lock primero

This commit is contained in:
f 2022-03-03 14:29:58 -03:00
parent 8df59231a5
commit 303e35b075

View file

@ -13,12 +13,13 @@ for filename in $install_dir/stack/*;do
done
while :;do
[ -f $install_dir/lock ] && continue
ping -c 1 fsf.org > /dev/null 2>&1 || continue
test_url="$(curl -s -X POST -o /dev/null -w "%{http_code}" $url)"
if [ $test_url -eq 404 ];then
echo "$(date +%Y-%m-%d-%H:%M:%S) - $url - $test_url" >> $install_dir/errors.log && sleep 300 && continue
fi
[ -f $install_dir/lock ] && continue
file=$(get_stack)
[ -z $file ] && continue
local_transaction_uuid=$(jq -r '."transaction_uuid"' $stack/$file)