From b6a4bd7504510c8c777d298da979ba5e85105074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Mon, 1 Jun 2015 22:51:47 +0200 Subject: [PATCH] dont echo the grep result MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- 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 cde2345..8561f52 100644 --- a/tests/2_docker_daemon_configuration.sh +++ b/tests/2_docker_daemon_configuration.sh @@ -60,7 +60,7 @@ fi # 2.7 check_2_7="2.7 - Do not use the aufs storage driver" -docker info 2>/dev/null| grep -e "^Storage Driver:\s*aufs\s*$" +docker info 2>/dev/null | grep -e "^Storage Driver:\s*aufs\s*$" >/dev/null 2>&1 if [ $? -eq 0 ]; then warn "$check_2_7" else