From 421c6dd86656298508724e331395e4821903437f Mon Sep 17 00:00:00 2001 From: Andreas Stieger Date: Fri, 24 Feb 2017 13:18:07 +0100 Subject: [PATCH] 2.17: may incorrectly match 5 digit port numbers Fixes #224 - no. 3 Signed-off-by: Andreas Stieger --- tests/2_docker_daemon_configuration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/2_docker_daemon_configuration.sh b/tests/2_docker_daemon_configuration.sh index 94b8f7b..cdf719a 100644 --- a/tests/2_docker_daemon_configuration.sh +++ b/tests/2_docker_daemon_configuration.sh @@ -161,7 +161,7 @@ fi # 2.17 check_2_17="2.17 - Bind swarm services to a specific host interface" if docker info 2>/dev/null | grep -e "Swarm:*\sactive\s*" >/dev/null 2>&1; then - netstat -lnt | grep -e '\[::]:2377' -e '*:2377' -e '0\.0\.0\.0:2377' >/dev/null 2>&1 + netstat -lnt | grep -e '\[::]:2377 ' -e '*:2377 ' -e ' 0\.0\.0\.0:2377 ' >/dev/null 2>&1 if [ $? -eq 1 ]; then pass "$check_2_17" else