Add set_device_status() to utils/linux_net.py

This method was being called by the EVPN driver but it did not exist.

Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com>
Change-Id: I9b99a696244f7c5c7f5805d33e894ae3f0cf21b2
This commit is contained in:
Lucas Alvares Gomes 2022-07-26 10:32:04 +01:00
parent 6f9a945851
commit 81ea7b0664

View File

@ -551,3 +551,8 @@ def del_ip_route(ovn_routing_tables_routes, ip_address, route_table, dev,
route_info = {'vlan': vlan, 'route': route}
if route_info in ovn_routing_tables_routes[dev]:
ovn_routing_tables_routes[dev].remove(route_info)
def set_device_status(device, status, ndb=None):
ovn_bgp_agent.privileged.linux_net.set_device_status(
device, status, ndb=ndb)