From d9c299074701f93766da5cd4ee1b64064d53203b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 1 Jul 2015 04:41:09 +0200 Subject: [PATCH] core: fix creation of private.img at VM startup This code is used when VM is migrated from older system, where HVM didn't have private.img. --- core/storage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storage/__init__.py b/core/storage/__init__.py index a67a921d..41f3e73f 100644 --- a/core/storage/__init__.py +++ b/core/storage/__init__.py @@ -198,4 +198,4 @@ class QubesVmStorage(object): if self.private_img and not os.path.exists (self.private_img): print >>sys.stderr, "WARNING: Creating empty VM private image file: {0}".\ format(self.private_img) - self.storage.create_on_disk_private_img(verbose=False) + self.create_on_disk_private_img(verbose=False)