Removed default 503 setting

This commit is contained in:
Asif Bacchus 2018-09-30 20:08:45 -06:00
parent 364b233354
commit 43f97e6fa0

View File

@ -132,8 +132,6 @@ function cleanup {
scriptPath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" scriptPath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
scriptName="$( basename ${0} )" scriptName="$( basename ${0} )"
logFile="$scriptPath/${scriptName%.*}.log" logFile="$scriptPath/${scriptName%.*}.log"
# set err503File default to '503.html' in same directory as script
err503File="$scriptPath/503.html"
# set borg parameters to 'normal' verbosity # set borg parameters to 'normal' verbosity
borgCreateParams='--stats' borgCreateParams='--stats'
borgPruneParams='--list' borgPruneParams='--list'
@ -142,6 +140,7 @@ borgPruneParams='--list'
### Set script parameters to null and initialize array variables ### Set script parameters to null and initialize array variables
unset PARAMS unset PARAMS
unset sqlDumpDir unset sqlDumpDir
unset err503File
unset webroot unset webroot
errorExplain=() errorExplain=()
exitWarn=() exitWarn=()