From 29a2c309789442670bdd7c93b6b42e7fa4887ae7 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Fri, 9 May 2025 15:30:47 -0600 Subject: [PATCH] Update install.sh to reflect script renaming and reordering - Replaced "00_wizard.sh" with "04_wizard.sh" in the required scripts list. - Renamed "04_run_services.sh" to "05_run_services.sh" and "05_final_report.sh" to "06_final_report.sh" for better clarity and organization of the installation process. --- scripts/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index f2d1f7a..44c56fa 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -10,12 +10,12 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" # Check if all required scripts exist and are executable in the current directory required_scripts=( - "00_wizard.sh" "01_system_preparation.sh" "02_install_docker.sh" "03_generate_secrets.sh" - "04_run_services.sh" - "05_final_report.sh" + "04_wizard.sh" + "05_run_services.sh" + "06_final_report.sh" ) missing_scripts=()