mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-04 12:21:17 +00:00
parent
29089f1884
commit
bf316f35cc
@ -192,9 +192,11 @@ class VMware(BaseManager):
|
|||||||
if int(version) < 6:
|
if int(version) < 6:
|
||||||
raise VMwareError("Using VMware Player requires version 6 or above")
|
raise VMwareError("Using VMware Player requires version 6 or above")
|
||||||
if version is None:
|
if version is None:
|
||||||
log.warning("Could not find VMware version")
|
log.warning("Could not find VMware version. Output of VMware: {}".format(output))
|
||||||
|
raise VMwareError("Could not find VMware version. Output of VMware: {}".format(output))
|
||||||
except (OSError, subprocess.SubprocessError) as e:
|
except (OSError, subprocess.SubprocessError) as e:
|
||||||
log.error("Error while looking for the VMware version: {}".format(e))
|
log.error("Error while looking for the VMware version: {}".format(e))
|
||||||
|
raise VMwareError("Error while looking for the VMware version: {}".format(e))
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_vmnet_interfaces_registry():
|
def _get_vmnet_interfaces_registry():
|
||||||
|
Loading…
Reference in New Issue
Block a user