Changed 503 warning codes

This commit is contained in:
Asif Bacchus 2018-10-01 23:19:11 -06:00
parent fc0a7c056c
commit bea22ce4c9

View File

@ -155,10 +155,9 @@ errorExplain[100]="Could not put NextCloud into Maintenance mode."
### Warning codes & messages ### Warning codes & messages
warningExplain[111]="Could not remove SQL dump file and directory. Please remove manually." warningExplain[111]="Could not remove SQL dump file and directory. Please remove manually."
warningExplain[5030]="Could not remove 503 error page. This MUST be removed manually before NGINX will serve webclients!" warningExplain[5030]="Could not remove 503 error page. This MUST be removed manually before NGINX will serve webclients!"
warningExplain[5031]="Name of a 503 error page file was not specified (-5 parameter missing)" warningExplain[5031]="No webroot path was specified (-w parameter missing)."
warningExplain[5032]="The specified 503 error page could not be found" warningExplain[5032]="The specified webroot (-w parameter) could not be found."
warningExplain[5033]="No webroot path was specified (-w parameter missing)" warningExplain[5033]="No 503 error page could be found. If not using the default located in the script directory, then check your -5 parameter."
warningExplain[5034]="The specified webroot could not be found"
warningExplain[5035]="Error copying 503 error page to webroot" warningExplain[5035]="Error copying 503 error page to webroot"
warn503="Web users will NOT be informed the server is down!" warn503="Web users will NOT be informed the server is down!"
@ -242,7 +241,7 @@ if [ -z "$webroot" ]; then
# no webroot path provided # no webroot path provided
echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \ echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \
>> "$logFile" >> "$logFile"
exitWarn+=('5033') exitWarn+=('5031')
else else
# verify webroot actually exists # verify webroot actually exists
checkExist fd "$webroot" checkExist fd "$webroot"
@ -251,7 +250,7 @@ else
# webroot directory specified could not be found # webroot directory specified could not be found
echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \ echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \
>> "$logFile" >> "$logFile"
exitWarn+=('5034') exitWarn+=('5032')
else else
# webroot exists # webroot exists
echo -e "${op}${stamp} Using webroot: ${lit}${webroot}${normal}" \ echo -e "${op}${stamp} Using webroot: ${lit}${webroot}${normal}" \
@ -263,7 +262,7 @@ else
# 503 file could not be found # 503 file could not be found
echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \ echo -e "${info}${stamp} -- [INFO] ${warn503} --${normal}" \
>> "$logFile" >> "$logFile"
exitWarn+=('5032') exitWarn+=('5033')
else else
# 503 file exists and webroot is valid. Let's copy it! # 503 file exists and webroot is valid. Let's copy it!
echo -e "${op}${stamp} ${err503File} found.${normal}" >> "$logFile" echo -e "${op}${stamp} ${err503File} found.${normal}" >> "$logFile"