Get a working Qemu handler. Next step add all parameters

This commit is contained in:
Julien Duponchelle
2015-02-19 19:43:45 +01:00
parent b03b9226ff
commit d0244824bf
8 changed files with 799 additions and 30 deletions

View File

@ -51,9 +51,12 @@ class BaseVM:
else:
self._console = self._manager.port_manager.get_free_console_port()
log.debug("{module}: {name} [{id}] initialized".format(module=self.manager.module_name,
name=self.name,
id=self.id))
log.debug("{module}: {name} [{id}] initialized. Console port {console}".format(
module=self.manager.module_name,
name=self.name,
id=self.id,
console=self._console
))
def __del__(self):