Ensure that only one value is provided

This commit is contained in:
mboelen 2015-04-29 13:53:40 +02:00
parent 761314df23
commit 70e20d514c
1 changed files with 2 additions and 0 deletions

View File

@ -778,6 +778,8 @@
NGINX_ACCESS_LOG_DISABLED=1
else
if [ ! "${VALUE}" = "" ]; then
# If multiple values follow, select first one
VALUE=`echo ${VALUE} | awk '{ print $1 }'`
if [ ! -f ${VALUE} ]; then
logtext "Result: could not find referenced log file ${VALUE} in nginx configuration"
NGINX_ACCESS_LOG_MISSING=1