All errors have documentation links

This commit is contained in:
Adam Outler
2025-10-31 22:24:31 +00:00
parent 1e63cec37c
commit 8edef9e852
24 changed files with 481 additions and 75 deletions
+11 -6
View File
@@ -38,16 +38,20 @@
################################################################################
# Banner display
printf '
\033[1;31m
RED='\033[1;31m'
RESET='\033[0m'
printf "${RED}"
echo '
_ _ _ ___ _ _ __ __
| \ | | | | / _ \| | | | \ \ / /
| \| | ___| |_/ /_\ \ | ___ _ __| |_ \ V /
| . |/ _ \ __| _ | |/ _ \ __| __|/ \
| |\ | __/ |_| | | | | __/ | | |_/ /^\ \
| |\ | __/ |_| | | | | __/ | | |_/ /^\ \
\_| \_/\___|\__\_| |_/_|\___|_| \__\/ \/
\033[0m
Network intruder and presence detector.
'
printf "\033[0m"
echo ' Network intruder and presence detector.
https://netalertx.com
'
@@ -71,13 +75,14 @@ for script in ${ENTRYPOINT_CHECKS}/*; do
FAILED_STATUS="${NETALERTX_DOCKER_ERROR_CHECK}"
echo "${script_name}: FAILED with ${FAILED_STATUS}"
echo "Failure detected in: ${script}"
# Continue to next check instead of exiting immediately
fi
done
if [ -n "${FAILED_STATUS}" ]; then
echo "Container startup checks failed with exit code ${FAILED_STATUS}."
exit ${FAILED_STATUS}
# Continue with startup despite failures for testing purposes
fi
# Set APP_CONF_OVERRIDE based on GRAPHQL_PORT if not already set