Revert temporary debugging changes now that lib scripts are fixed

This commit is contained in:
Mărcziem ™
2025-10-03 10:07:58 +02:00
parent 834b5382d5
commit 0fd250a5b3
2 changed files with 21 additions and 7 deletions

View File

@@ -5,7 +5,15 @@
# Script metadata
SCRIPT_VERSION="2.1.1"
SCRIPT_NAME="NAS Setup Script"
SCRIPT_AUTHOR="Sebastian Palencsár"
SCRIPT_AUTH # 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."
return 1 # Force create_interactive_config
fi
fi
return $errors Palencsár"
# Directories and files
LOG_FILE="/var/log/nas_setup.log"