Removed ambiguity between webroot and ncRoot

This commit is contained in:
Asif Bacchus 2018-09-30 21:38:04 -06:00
parent 5064736e90
commit 2281510135

View File

@ -172,7 +172,7 @@ if [ -z "$1" ] || [[ ! "$1" =~ ^- ]]; then
fi
# use GetOpts to process parameters
while getopts ':l:nv5:r:' PARAMS; do
while getopts ':l:n:v5:r:' PARAMS; do
case "$PARAMS" in
l)
# use provided location for logFile
@ -192,7 +192,7 @@ while getopts ':l:nv5:r:' PARAMS; do
err503File="${OPTARG}"
;;
r)
# path to webroot for NextCloud installation
# path to webserver webroot to copy 503 error page
webroot="${OPTARG}"
;;
?)