commit: f9c4602fec8b4a5bb6561dbf8bbeeff8447165bc
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Tue Jan 17 09:14:37 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 15:06:12 2023 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=f9c4602f
net/veth.sh: Eliminate the bashism that is the == test operator
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net/veth.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/veth.sh b/net/veth.sh
index 80f9a8e..e18906c 100644
--- a/net/veth.sh
+++ b/net/veth.sh
@@ -132,7 +132,7 @@ veth_pre_start()
local createveth
eval createveth=\$veth_${IFVAR}_create
- if [ "$createveth" == "no" ]; then
+ if [ "$createveth" = "no" ]; then
return 0
fi