From 6cf5731f4691e903b7ea1b4bac1007b77a98ac9b Mon Sep 17 00:00:00 2001 From: AryaLee Date: Fri, 12 Dec 2025 17:06:33 +0800 Subject: [PATCH] test: kill ovs process for <= 2.13.90 version --- utilities/ovs-lib.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-lib.in b/utilities/ovs-lib.in index e561e4eda..de3340560 100644 --- a/utilities/ovs-lib.in +++ b/utilities/ovs-lib.in @@ -263,7 +263,7 @@ stop_daemon () { # stop older versions of daemons which do not behave correctly # with `ovs-appctl exit` (e.g. ovs-vswitchd <= 2.5.0 deletes # internal ports). - if version_geq "$version" "2.5.90"; then + if version_geq "$version" "2.13.90"; then actions="$graceful $actions" fi actiontype=""