Changed parameter titles

This commit is contained in:
Asif Bacchus 2018-09-30 21:38:54 -06:00
parent 2281510135
commit a6fcaf6012
1 changed files with 2 additions and 2 deletions

View File

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