From 2b1ab564fcb271fc8f3593427e760c1b367acbe8 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Tue, 27 Jan 2009 01:36:51 -0500 Subject: [PATCH] If the autoinstall or initial boot of a VM fails, destroy the VM immediately. svn path=/trunk/packages/invirt-web/; revision=2020 --- code/controls.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/code/controls.py b/code/controls.py index 7b4558e..4cd0e9c 100644 --- a/code/controls.py +++ b/code/controls.py @@ -110,11 +110,15 @@ def createVm(username, state, owner, contact, name, description, memory, disksiz 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(): -- 1.7.9.5