mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-30 16:13:58 +00:00
Disable unreliable nested virtualization check.
This commit is contained in:
parent
c6990dfeee
commit
a059e6b943
@ -74,8 +74,9 @@ class HyperVGNS3VM(BaseGNS3VM):
|
|||||||
if conn.Win32_Processor()[0].Manufacturer != "GenuineIntel":
|
if conn.Win32_Processor()[0].Manufacturer != "GenuineIntel":
|
||||||
raise GNS3VMError("An Intel processor is required by Hyper-V to support nested virtualization")
|
raise GNS3VMError("An Intel processor is required by Hyper-V to support nested virtualization")
|
||||||
|
|
||||||
if not conn.Win32_Processor()[0].VirtualizationFirmwareEnabled:
|
# This is not reliable
|
||||||
raise GNS3VMError("Nested Virtualization (VT-x) is not enabled on this system")
|
#if not conn.Win32_Processor()[0].VirtualizationFirmwareEnabled:
|
||||||
|
# raise GNS3VMError("Nested Virtualization (VT-x) is not enabled on this system")
|
||||||
|
|
||||||
def _connect(self):
|
def _connect(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user