1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 03:08:14 +00:00

Fix sometimes VirtualBox VM are not loading

Fix  https://github.com/GNS3/gns3-server/issues/865
This commit is contained in:
Julien Duponchelle 2017-01-13 17:20:02 +01:00
parent 1527a1a4e1
commit 7241063ddf
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -209,8 +209,9 @@ class VirtualBoxVM(BaseNode):
if os.path.exists(self._linked_vbox_file()):
tree = ET.parse(self._linked_vbox_file())
machine = tree.getroot().find("{http://www.virtualbox.org/}Machine")
machine.set("uuid", "{" + self.id + "}")
tree.write(self._linked_vbox_file())
if machine:
machine.set("uuid", "{" + self.id + "}")
tree.write(self._linked_vbox_file())
@asyncio.coroutine
def check_hw_virtualization(self):