From 4749792e70254654a3cbcd7aa62bc18ee2afb904 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Fri, 2 Mar 2012 01:55:16 +0100 Subject: [PATCH] dom0/qvm-core: force HVM to be updateable --- dom0/qvm-core/qubes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dom0/qvm-core/qubes.py b/dom0/qvm-core/qubes.py index dc82e43a..0fc04f2d 100755 --- a/dom0/qvm-core/qubes.py +++ b/dom0/qvm-core/qubes.py @@ -2044,6 +2044,10 @@ class QubesHVm(QubesVm): if "dir_path" not in kwargs or kwargs["dir_path"] is None: kwargs["dir_path"] = qubes_appvms_dir + "/" + kwargs["name"] + # only updateable HVM supported + kwargs["updateable"] = True + kwargs["template_vm"] = None + super(QubesHVm, self).__init__(**kwargs) self.updateable = True self.config_file_template = config_template_hvm