Ensure script cleanup is done in chroot

This commit is contained in:
Joshua Boniface 2023-11-16 18:27:23 -05:00
parent 712a50ca27
commit c1c22c81e7
1 changed files with 7 additions and 1 deletions

View File

@ -681,9 +681,15 @@ def create_vm(
def fail_clean(celery, msg, exception=ProvisioningError):
try:
with chroot(temp_dir):
vm_builder.cleanup()
except Exception:
# We're already failing, do the best we can
pass
try:
general_cleanup()
except Exception:
# We're already failing, do the best we can
pass
fail(celery, msg, exception=exception)