(stop/restart)_ovsdb_controller_updates macros (using nft) are now defined in ovn-macro.at. Remove similar implementations (using iptables) from system-ovn.at.
Signed-off-by: Xavier Simonart <[email protected]> --- tests/system-ovn.at | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/system-ovn.at b/tests/system-ovn.at index ddb3d14e9..1cbb50705 100644 --- a/tests/system-ovn.at +++ b/tests/system-ovn.at @@ -11109,17 +11109,6 @@ wait_for_local_bindings() { [kill -CONT $(cat ovn-sb/ovsdb-server.pid)] ) } -stop_ovsdb_controller_updates() { - TCP_PORT=$1 - echo Stopping updates from ovn-controller to ovsdb using port $TCP_PORT - on_exit 'iptables -C INPUT -p tcp --destination-port $TCP_PORT -j DROP 2>/dev/null && iptables -D INPUT -p tcp --destination-port $TCP_PORT -j DROP' - iptables -A INPUT -p tcp --destination-port $TCP_PORT -j DROP -} -restart_ovsdb_controller_updates() { - TCP_PORT=$1 - echo Restarting updates from ovn-controller to ovsdb - iptables -D INPUT -p tcp --destination-port $TCP_PORT -j DROP -} ensure_controller_run() { # We want to make sure controller could run at least one full loop. # We can't use wait=hv as sb might be sleeping. -- 2.31.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
