You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

netifs.json.j2 291B

123456789
  1. [
  2. {% if netifs is defined %}
  3. {% for netif in netifs %}
  4. {% 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" %}
  5. "{{netif}}",
  6. {% endif %}
  7. {% endfor %}
  8. {% endif %}
  9. ]