From f324db06779dc810decb05ce1bb51948d500a3ec Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 17 May 2021 21:38:42 -0400 Subject: netns: use `exit 0` for early exit It appears that much of netns is not yet ported/usable on FreeBSD, and we previously used `exit 1` to exit early and skip the remainder. Exit without error instead, for CI purposes. Signed-off-by: Ed Maste --- tests/netns.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/netns.sh b/tests/netns.sh index f868a7a..06487b1 100755 --- a/tests/netns.sh +++ b/tests/netns.sh @@ -188,7 +188,7 @@ ifconfig1 wg1 mtu $big_mtu ifconfig2 wg2 mtu $big_mtu tests -exit 1 +exit 0 ip1 link set wg0 mtu $orig_mtu ip2 link set wg0 mtu $orig_mtu -- cgit v1.2.3-59-g8ed1b