Move the autoinstaller disabling code to a more useful location
authorEvan Broder <broder@mit.edu>
Thu, 20 Nov 2008 13:44:13 +0000 (08:44 -0500)
committerEvan Broder <broder@mit.edu>
Thu, 20 Nov 2008 13:44:13 +0000 (08:44 -0500)
(i.e. so that it'll throw the exception before it creates the VM)

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

code/controls.py
code/validation.py

index d152627..7b4558e 100644 (file)
@@ -43,8 +43,6 @@ def getswap(disksize, memsize):
     return int(min(disksize / 4, memsize * 1.5))
 
 def lvinstall(machine, autoinstall):
-    #raise InvalidInput('autoinstall', 'install',
-    #                   "The autoinstaller has been temporarily disabled")
     disksize = machine.disks[0].size
     memsize = machine.memory
     swapsize = getswap(disksize, memsize)
index ecd8b9f..513b431 100644 (file)
@@ -66,6 +66,8 @@ class Validate:
                 raise CodeError("Invalid cdrom type '%s'" % cdrom)
             self.cdrom = cdrom
         if autoinstall is not None:
+            #raise InvalidInput('autoinstall', 'install',
+            #                   "The autoinstaller has been temporarily disabled")
             self.autoinstall = Autoinstall.query().get(autoinstall)