#!/bin/sh # first-run-check.sh - Checks and initializes configuration files on first run # Fix permissions if config directory exists but is unreadable if [ -d "${NETALERTX_CONFIG}" ]; then chmod u+rwX "${NETALERTX_CONFIG}" 2>/dev/null || true fi chmod u+rw "${NETALERTX_CONFIG}/app.conf" 2>/dev/null || true set -eu CYAN=$(printf '\033[1;36m') RED=$(printf '\033[1;31m') RESET=$(printf '\033[0m') # Ensure config folder exists if [ ! -d "${NETALERTX_CONFIG}" ]; then if ! mkdir -p "${NETALERTX_CONFIG}"; then >&2 printf "%s" "${RED}" >&2 cat <&2 printf "%s" "${RESET}" exit 1 fi chmod 700 "${NETALERTX_CONFIG}" 2>/dev/null || true fi # Fresh rebuild requested if [ "${ALWAYS_FRESH_INSTALL:-false}" = "true" ] && [ -e "${NETALERTX_CONFIG}/app.conf" ]; then >&2 echo "INFO: ALWAYS_FRESH_INSTALL enabled — removing existing config." rm -rf "${NETALERTX_CONFIG}"/* fi # Check for app.conf and deploy if required if [ ! -f "${NETALERTX_CONFIG}/app.conf" ]; then install -m 600 /app/back/app.conf "${NETALERTX_CONFIG}/app.conf" || { >&2 echo "ERROR: Failed to deploy default config to ${NETALERTX_CONFIG}/app.conf" exit 2 } >&2 printf "%s" "${CYAN}" >&2 cat <&2 printf "%s" "${RESET}" fi