From 4624c7433c57acf4d732220a86d42c4e587ad04a Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 1 Sep 2016 11:28:35 +0200 Subject: [PATCH] Do not dump GNS3 VM config in the list of computes of config file --- gns3server/controller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/__init__.py b/gns3server/controller/__init__.py index 8d006104..103fc15f 100644 --- a/gns3server/controller/__init__.py +++ b/gns3server/controller/__init__.py @@ -103,7 +103,7 @@ class Controller: } for c in self._computes.values(): - if c.id != "local": + if c.id != "local" and c.id != "vm": data["computes"].append({ "host": c.host, "name": c.name,