update to netclient existing bridge check to avoid using the -j flag, which requires version 4.7+ vs 4.5+ that we currently expect

This commit is contained in:
Blake Harnden 2020-06-08 09:55:05 -07:00
parent bf1bc511e2
commit 7ffbf457be

View file

@ -1,7 +1,6 @@
""" """
Clients for dealing with bridge/interface commands. Clients for dealing with bridge/interface commands.
""" """
import json
from typing import Callable from typing import Callable
import netaddr import netaddr
@ -279,12 +278,13 @@ class LinuxNetClient:
:param _id: node id to check bridges for :param _id: node id to check bridges for
:return: True if there are existing bridges, False otherwise :return: True if there are existing bridges, False otherwise
""" """
output = self.run(f"{IP_BIN} -j link show type bridge") output = self.run(f"{IP_BIN} -o link show type bridge")
bridges = json.loads(output) lines = output.split("\n")
for bridge in bridges: for line in lines:
name = bridge.get("ifname") values = line.split(":")
if not name: if not len(values) >= 2:
continue continue
name = values[1]
fields = name.split(".") fields = name.split(".")
if len(fields) != 3: if len(fields) != 3:
continue continue