From 824a415f01eb2a3ce94377eab65902de96ee4848 Mon Sep 17 00:00:00 2001 From: Kelin Date: Sun, 8 Feb 2026 19:33:56 -0500 Subject: [PATCH] Fix: Call prepare_deployment() to handle option 1 (install prerequisites) The prepare_deployment() function was defined but never called, causing option 1 (Install Prerequisites) to not execute. Added the function call after the menu selection loop to properly handle special deployment modes. --- scripts/ez-homelab.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/ez-homelab.sh b/scripts/ez-homelab.sh index 0cffa37..eb452b0 100755 --- a/scripts/ez-homelab.sh +++ b/scripts/ez-homelab.sh @@ -2355,6 +2355,9 @@ main() { echo "" + # Prepare deployment environment (handles special cases like prerequisites installation) + prepare_deployment + # Handle remote server deployment separately if [ "$DEPLOY_REMOTE_SERVER" = true ]; then # Prompt for configuration values