1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-17 05:48:58 +00:00

Do not dump GNS3 VM config in the list of computes of config file

This commit is contained in:
Julien Duponchelle 2016-09-01 11:28:35 +02:00
parent 483370b756
commit 4624c7433c
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -103,7 +103,7 @@ class Controller:
} }
for c in self._computes.values(): for c in self._computes.values():
if c.id != "local": if c.id != "local" and c.id != "vm":
data["computes"].append({ data["computes"].append({
"host": c.host, "host": c.host,
"name": c.name, "name": c.name,