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.
This commit is contained in:
Yury Kossakovsky
2025-05-09 15:30:47 -06:00
parent b7ff4399d1
commit 29a2c30978

View File

@@ -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=()