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

Ubridge 0.9.3 is require

This commit is contained in:
Julien Duponchelle 2015-12-22 17:33:47 +01:00
parent 7e196cabc1
commit 8de90d8236

View File

@ -327,8 +327,8 @@ class BaseVM:
yield from self._ubridge_hypervisor.start() yield from self._ubridge_hypervisor.start()
log.info("Hypervisor {}:{} has successfully started".format(self._ubridge_hypervisor.host, self._ubridge_hypervisor.port)) log.info("Hypervisor {}:{} has successfully started".format(self._ubridge_hypervisor.host, self._ubridge_hypervisor.port))
yield from self._ubridge_hypervisor.connect() yield from self._ubridge_hypervisor.connect()
if parse_version(self._ubridge_hypervisor.version) < parse_version('0.9.2'): if parse_version(self._ubridge_hypervisor.version) < parse_version('0.9.3'):
raise VMError("uBridge version must be >= 0.9.2, detected version is {}".format(self._ubridge_hypervisor.version)) raise VMError("uBridge version must be >= 0.9.3, detected version is {}".format(self._ubridge_hypervisor.version))
@property @property
def hw_virtualization(self): def hw_virtualization(self):