tiancheng91 / collection

笔记
https://github.com/tiancheng91/collection/issues
22 stars 1 forks source link

test #63

Open tiancheng91 opened 2 years ago

tiancheng91 commented 2 years ago
while true; do
  terraform apply -auto-approve > run.log 2>&1
  if grep -q 'Out of host capacity' run.log; then
    echo "failed at `date`, running..."
    sleep 180
    continue
  fi

  echo "success @ `date`"
  break
done