Block until instances are confirmed to be deleted

This commit is contained in:
Michael Vines 2019-03-14 15:54:19 -07:00
parent 5741400713
commit 47ddbbe53b
1 changed files with 8 additions and 0 deletions

View File

@ -389,6 +389,14 @@ delete() {
echo "No instances found matching '$filter'"
else
cloud_DeleteInstances true
while true; do
cloud_FindInstances "$filter"
if [[ ${#instances[@]} -eq 0 ]]; then
break;
fi
echo "(waiting for instances to be deleted)"
sleep 3
done
fi
done
rm -f "$configFile"