[HTTP-6632] fix for proper detection of Apache modules

This commit is contained in:
Michael Boelen 2016-07-11 09:49:24 +02:00
parent e22322920f
commit 74c9513fbb
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@
for I in ${APACHE_MODULES_LOCS}; do
DirectoryExists ${I}
if [ ${DIRECTORY_FOUND} -eq 1 ]; then
FIND=`find ${I} -name mod_* -print | sort`
FIND=$(find ${I} -name "mod_*" -print | sort)
for J in ${FIND}; do
Report "apache_module[]=${J}"
LogText "Result: found Apache module ${J}"