Tidy up output

This commit is contained in:
Adam Outler
2025-10-23 21:16:15 -04:00
parent 7a3bf6716c
commit 0897c05200
5 changed files with 8 additions and 7 deletions

View File

@@ -49,6 +49,7 @@ printf '
\033[0m
Network intruder and presence detector.
https://netalertx.com
'
set -u
@@ -57,7 +58,7 @@ NETALERTX_DOCKER_ERROR_CHECK=0
# Run all pre-startup checks to validate container environment and dependencies
if [ ${NETALERTX_DEBUG != 1} ]; then
if [ "${NETALERTX_DEBUG:-0}" != "1" ]; then
echo "Startup pre-checks"
for script in ${SYSTEM_SERVICES_SCRIPTS}/check-*.sh; do
script_name=$(basename "$script" | sed 's/^check-//;s/\.sh$//;s/-/ /g')