Suspend and resume for VirtualBox.

This commit is contained in:
Jeremy
2015-01-21 19:28:52 -07:00
parent 87bd0d1869
commit 3b7d08a80e
2 changed files with 41 additions and 5 deletions

View File

@ -75,14 +75,12 @@ class Project:
:param vm_uuid: VM UUID
"""
p = os.path.join(self._path, module, vm_uuid)
workdir = os.path.join(self._path, module, vm_uuid)
try:
os.makedirs(p, exist_ok=True)
except FileExistsError:
pass
os.makedirs(workdir, exist_ok=True)
except OSError as e:
raise aiohttp.web.HTTPInternalServerError(text="Could not create VM working directory: {}".format(e))
return p
return workdir
def __json__(self):