From 85f6c555b213ef4cf70ca9dc3d8045bba1a16df4 Mon Sep 17 00:00:00 2001 From: mboelen Date: Thu, 1 Oct 2015 16:02:09 +0200 Subject: [PATCH] Minor cleanup and redirecting possible errors --- include/tests_webservers | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/tests_webservers b/include/tests_webservers index cd67c55a..5492a90f 100644 --- a/include/tests_webservers +++ b/include/tests_webservers @@ -50,18 +50,16 @@ # Test : HTTP-6622 # Description : Test for Apache installation # Notes : Do not run on NetBSD, -v is unknown option for httpd binary - # On OpenBSD do not run /usr/sbin/httpd with -v: builtin non-Apache + # On OpenBSD do not run /usr/sbin/httpd with -v: builtin non-Apache if [ ! "${OS}" = "NetBSD" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi Register --test-no HTTP-6622 --preqs-met ${PREQS_MET} --weight L --network NO --description "Checking Apache presence" if [ ${SKIPTEST} -eq 0 ]; then - if [ "${OS}" = "OpenBSD" -a "${HTTPDBINARY}" = "/usr/sbin/httpd" ]; then - HTTPDBINARY="" - fi + if [ "${OS}" = "OpenBSD" -a "${HTTPDBINARY}" = "/usr/sbin/httpd" ]; then HTTPDBINARY=""; fi if [ "${HTTPDBINARY}" = "" ]; then Display --indent 2 --text "- Checking Apache" --result "NOT FOUND" --color WHITE else logtext "Test: Scanning for Apache binary" - IS_APACHE=`${HTTPDBINARY} -v | egrep '[aA]pache'` + IS_APACHE=`${HTTPDBINARY} -v 2> /dev/null | egrep '[aA]pache'` if [ "${IS_APACHE}" = "" ]; then logtext "Result: ${HTTPDBINARY} is not Apache" Display --indent 2 --text "- Checking Apache (binary ${HTTPDBINARY})" --result "NO MATCH" --color WHITE