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

Mark VirtualBox support for running the GNS3 VM as deprecated. Ref #1377.

This commit is contained in:
grossmj 2018-08-08 15:02:31 +07:00
parent cc52a6a6b5
commit e3c8c9d484

View File

@ -67,15 +67,15 @@ class GNS3VM:
"support_ram": True "support_ram": True
} }
if sys.platform.startswith("darwin"): if sys.platform.startswith("darwin"):
vmware_info["name"] = "VMware Fusion" vmware_info["name"] = "VMware Fusion (recommended)"
else: else:
vmware_info["name"] = "VMware Workstation / Player" vmware_info["name"] = "VMware Workstation / Player (recommended)"
download_url = "https://github.com/GNS3/gns3-gui/releases/download/v{version}/GNS3.VM.VirtualBox.{version}.zip".format(version=__version__) download_url = "https://github.com/GNS3/gns3-gui/releases/download/v{version}/GNS3.VM.VirtualBox.{version}.zip".format(version=__version__)
virtualbox_info = { virtualbox_info = {
"engine_id": "virtualbox", "engine_id": "virtualbox",
"name": "VirtualBox", "name": "VirtualBox (deprecated)",
"description": 'VirtualBox doesn\'t support nested virtualization, this means running Qemu based VM could be very slow.<br>The GNS3 VM can be <a href="{}">downloaded here</a>'.format(download_url), "description": 'VirtualBox doesn\'t support nested virtualization, this means Qemu based VMs will run extremely slowly. This feature is marked as deprecated and support may be removed from future GNS3 releases.<br>The GNS3 VM can be <a href="{}">downloaded here</a>'.format(download_url),
"support_when_exit": True, "support_when_exit": True,
"support_headless": True, "support_headless": True,
"support_ram": True "support_ram": True