mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
Tidy up output
This commit is contained in:
@@ -49,6 +49,7 @@ printf '
|
|||||||
\033[0m
|
\033[0m
|
||||||
Network intruder and presence detector.
|
Network intruder and presence detector.
|
||||||
https://netalertx.com
|
https://netalertx.com
|
||||||
|
|
||||||
'
|
'
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
@@ -57,7 +58,7 @@ NETALERTX_DOCKER_ERROR_CHECK=0
|
|||||||
|
|
||||||
|
|
||||||
# Run all pre-startup checks to validate container environment and dependencies
|
# 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"
|
echo "Startup pre-checks"
|
||||||
for script in ${SYSTEM_SERVICES_SCRIPTS}/check-*.sh; do
|
for script in ${SYSTEM_SERVICES_SCRIPTS}/check-*.sh; do
|
||||||
script_name=$(basename "$script" | sed 's/^check-//;s/\.sh$//;s/-/ /g')
|
script_name=$(basename "$script" | sed 's/^check-//;s/\.sh$//;s/-/ /g')
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
check_mandatory_folders() {
|
check_mandatory_folders() {
|
||||||
# Check and create plugins log directory
|
# Check and create plugins log directory
|
||||||
if [ ! -d "${NETALERTX_PLUGINS_LOG}" ]; then
|
if [ ! -d "${NETALERTX_PLUGINS_LOG}" ]; then
|
||||||
echo "Warning: Plugins log directory missing, creating..."
|
echo " * Creating Plugins log."
|
||||||
if ! mkdir -p "${NETALERTX_PLUGINS_LOG}"; then
|
if ! mkdir -p "${NETALERTX_PLUGINS_LOG}"; then
|
||||||
echo "Error: Failed to create plugins log directory: ${NETALERTX_PLUGINS_LOG}"
|
echo "Error: Failed to create plugins log directory: ${NETALERTX_PLUGINS_LOG}"
|
||||||
return 1
|
return 1
|
||||||
@@ -14,7 +14,7 @@ check_mandatory_folders() {
|
|||||||
|
|
||||||
# Check and create system services run log directory
|
# Check and create system services run log directory
|
||||||
if [ ! -d "${SYSTEM_SERVICES_RUN_LOG}" ]; then
|
if [ ! -d "${SYSTEM_SERVICES_RUN_LOG}" ]; then
|
||||||
echo "Warning: System services run log directory missing, creating..."
|
echo " * Creating System services run log."
|
||||||
if ! mkdir -p "${SYSTEM_SERVICES_RUN_LOG}"; then
|
if ! mkdir -p "${SYSTEM_SERVICES_RUN_LOG}"; then
|
||||||
echo "Error: Failed to create system services run log directory: ${SYSTEM_SERVICES_RUN_LOG}"
|
echo "Error: Failed to create system services run log directory: ${SYSTEM_SERVICES_RUN_LOG}"
|
||||||
return 1
|
return 1
|
||||||
@@ -23,7 +23,7 @@ check_mandatory_folders() {
|
|||||||
|
|
||||||
# Check and create system services run tmp directory
|
# Check and create system services run tmp directory
|
||||||
if [ ! -d "${SYSTEM_SERVICES_RUN_TMP}" ]; then
|
if [ ! -d "${SYSTEM_SERVICES_RUN_TMP}" ]; then
|
||||||
echo "Warning: System services run tmp directory missing, creating..."
|
echo " * Creating System services run tmp."
|
||||||
if ! mkdir -p "${SYSTEM_SERVICES_RUN_TMP}"; then
|
if ! mkdir -p "${SYSTEM_SERVICES_RUN_TMP}"; then
|
||||||
echo "Error: Failed to create system services run tmp directory: ${SYSTEM_SERVICES_RUN_TMP}"
|
echo "Error: Failed to create system services run tmp directory: ${SYSTEM_SERVICES_RUN_TMP}"
|
||||||
return 1
|
return 1
|
||||||
@@ -32,7 +32,7 @@ check_mandatory_folders() {
|
|||||||
|
|
||||||
# Check and create DB locked log file
|
# Check and create DB locked log file
|
||||||
if [ ! -f "${LOG_DB_IS_LOCKED}" ]; then
|
if [ ! -f "${LOG_DB_IS_LOCKED}" ]; then
|
||||||
echo "Warning: DB locked log file missing, creating..."
|
echo " * Creating DB locked log."
|
||||||
if ! touch "${LOG_DB_IS_LOCKED}"; then
|
if ! touch "${LOG_DB_IS_LOCKED}"; then
|
||||||
echo "Error: Failed to create DB locked log file: ${LOG_DB_IS_LOCKED}"
|
echo "Error: Failed to create DB locked log file: ${LOG_DB_IS_LOCKED}"
|
||||||
return 1
|
return 1
|
||||||
@@ -41,7 +41,7 @@ check_mandatory_folders() {
|
|||||||
|
|
||||||
# Check and create execution queue log file
|
# Check and create execution queue log file
|
||||||
if [ ! -f "${LOG_EXECUTION_QUEUE}" ]; then
|
if [ ! -f "${LOG_EXECUTION_QUEUE}" ]; then
|
||||||
echo "Warning: Execution queue log file missing, creating..."
|
echo " * Creating Execution queue log."
|
||||||
if ! touch "${LOG_EXECUTION_QUEUE}"; then
|
if ! touch "${LOG_EXECUTION_QUEUE}"; then
|
||||||
echo "Error: Failed to create execution queue log file: ${LOG_EXECUTION_QUEUE}"
|
echo "Error: Failed to create execution queue log file: ${LOG_EXECUTION_QUEUE}"
|
||||||
return 1
|
return 1
|
||||||
|
|||||||
@@ -45,6 +45,6 @@ if [ "${failures}" -ne 0 ]; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "${SYSTEM_NGINX_CONFIG}/conf.active" ]; then
|
if [ ! -d "${SYSTEM_NGINX_CONFIG}/conf.active" ]; then
|
||||||
echo "Note: Using default listen address ${LISTEN_ADDR}:${PORT} (no ${SYSTEM_NGINX_CONFIG}/conf.active override)."
|
echo "Note: Using default listen address ${LISTEN_ADDR}:${PORT} (no ${SYSTEM_NGINX_CONFIG}/conf.active override)."
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user