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:
parent
bf1bc511e2
commit
7ffbf457be
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue