If the autoinstall or initial boot of a VM fails, destroy the VM
authorEvan Broder <broder@mit.edu>
Tue, 27 Jan 2009 06:36:51 +0000 (01:36 -0500)
committerEvan Broder <broder@mit.edu>
Tue, 27 Jan 2009 06:36:51 +0000 (01:36 -0500)
immediately.

svn path=/trunk/packages/invirt-web/; revision=2020

code/controls.py

index 7b4558e..4cd0e9c 100644 (file)
@@ -110,11 +110,15 @@ def createVm(username, state, owner, contact, name, description, memory, disksiz
         session.rollback()
         raise
     makeDisks(machine)
         session.rollback()
         raise
     makeDisks(machine)
-    if autoinstall:
-        lvinstall(machine, autoinstall)
-    else:
-        # tell it to boot with cdrom
-        bootMachine(machine, cdrom)
+    try:
+        if autoinstall:
+            lvinstall(machine, autoinstall)
+        else:
+            # tell it to boot with cdrom
+            bootMachine(machine, cdrom)
+    except CodeError, e:
+        deleteVM(machine)
+        raise
     return machine
 
 def getList():
     return machine
 
 def getList():