1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-11 16:41:04 +00:00

Fix linked_clone property lost during topology convert

This commit is contained in:
Julien Duponchelle 2017-02-14 14:45:48 +01:00
parent 0dbd92db11
commit a191029c4f
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
4 changed files with 16 additions and 12 deletions

View File

@ -321,10 +321,12 @@ def _convert_1_3_later(topo, topo_path):
node["properties"]["ram"] = PLATFORMS_DEFAULT_RAM[old_node["type"].lower()]
elif old_node["type"] == "VMwareVM":
node["node_type"] = "vmware"
node["properties"]["linked_clone"] = old_node.get("linked_clone", False)
if node["symbol"] is None:
node["symbol"] = ":/symbols/vmware_guest.svg"
elif old_node["type"] == "VirtualBoxVM":
node["node_type"] = "virtualbox"
node["properties"]["linked_clone"] = old_node.get("linked_clone", False)
if node["symbol"] is None:
node["symbol"] = ":/symbols/vbox_guest.svg"
elif old_node["type"] == "IOUDevice":

View File

@ -34,6 +34,7 @@
"port_segment_size": 0,
"first_port_name": null,
"properties": {
"linked_clone": false,
"acpi_shutdown": false,
"adapter_type": "Intel PRO/1000 MT Desktop (82540EM)",
"adapters": 1,

View File

@ -34,6 +34,7 @@
"port_segment_size": 0,
"first_port_name": null,
"properties": {
"linked_clone": false,
"acpi_shutdown": false,
"adapter_type": "e1000",
"adapters": 1,