From 494b13264ec7ccfa3cda35eee443fa291cafd5b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=83rcziem=20=E2=84=A2?= <118485377+spalencsar@users.noreply.github.com> Date: Fri, 3 Oct 2025 09:19:55 +0200 Subject: [PATCH] Force new configuration for debugging to resolve config persistence issues --- config/defaults.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/defaults.sh b/config/defaults.sh index cd3e23c..512bf06 100644 --- a/config/defaults.sh +++ b/config/defaults.sh @@ -147,7 +147,7 @@ validate_config() { fi done - # Validate Docker dependencies +# Validate Docker dependencies if [[ "${INSTALL_DOCKER:-false}" != "true" ]]; then if [[ "${INSTALL_VAULTWARDEN:-false}" == "true" ]] || [[ "${INSTALL_JELLYFIN:-false}" == "true" ]] || [[ "${INSTALL_PORTAINER:-false}" == "true" ]]; then log_warning "Docker-abhängige Services sind aktiviert, aber Docker ist deaktiviert. Erzwinge neue Konfiguration." @@ -155,5 +155,9 @@ validate_config() { fi fi + # Temporarily force new configuration for debugging + log_warning "Erzwinge neue Konfiguration für Debugging-Zwecke." + return 1 + return $errors }