From 1705fbbec5639deb7aec82fff70eee64a3649dae Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Mon, 24 Sep 2018 09:14:38 +0000 Subject: [PATCH] new type virt_bridge --- templates/netifs.json.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/netifs.json.j2 b/templates/netifs.json.j2 index 2f419a0..0ec6194 100644 --- a/templates/netifs.json.j2 +++ b/templates/netifs.json.j2 @@ -1,7 +1,7 @@ [ {% if netifs is defined %} {% for netif in netifs %} -{% if netifs[netif].type == "ethernet" or netifs[netif].type == "virt" or netifs[netif].type == "virt_ptp" or netifs[netif].type == "bridge" %} +{% if netifs[netif].type == "ethernet" or netifs[netif].type == "virt" or netifs[netif].type == "virt_ptp" or netifs[netif].type == "virt_bridge" or netifs[netif].type == "bridge" %} "{{netif}}", {% endif %} {% endfor %}