mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Fix "Change of linked base VM doesn't work with templates migrated from 2.0"
This commit is contained in:
parent
52b690b683
commit
abbe3d3a31
@ -44,7 +44,9 @@ class Appliance:
|
|||||||
# Version of the gui before 2.1 use linked_base
|
# Version of the gui before 2.1 use linked_base
|
||||||
# and the server linked_clone
|
# and the server linked_clone
|
||||||
if "linked_base" in self._data:
|
if "linked_base" in self._data:
|
||||||
self._data["linked_clone"] = self._data.pop("linked_base")
|
linked_base = self._data.pop("linked_base")
|
||||||
|
if "linked_clone" not in self._data:
|
||||||
|
self._data["linked_clone"] = linked_base
|
||||||
if data["node_type"] == "iou" and "image" in data:
|
if data["node_type"] == "iou" and "image" in data:
|
||||||
del self._data["image"]
|
del self._data["image"]
|
||||||
self._builtin = builtin
|
self._builtin = builtin
|
||||||
|
Loading…
Reference in New Issue
Block a user