diff --git a/scripts/06_final_report.sh b/scripts/06_final_report.sh index 6d7250d..c1fd834 100755 --- a/scripts/06_final_report.sh +++ b/scripts/06_final_report.sh @@ -39,16 +39,6 @@ is_profile_active() { fi } -# --- Installation Summary --- -log_info "Installation Summary. The following steps were performed by the scripts:" -log_success "- System updated and basic utilities installed" -log_success "- Firewall (UFW) configured and enabled" -log_success "- Fail2Ban activated for brute-force protection" -log_success "- Automatic security updates enabled" -log_success "- Docker and Docker Compose installed" -log_success "- '.env' generated with secure passwords and secrets" -log_success "- Services launched via Docker Compose" - # --- Service Access Credentials --- # Display credentials, checking if variables exist diff --git a/scripts/install.sh b/scripts/install.sh index 75188bc..252ee6a 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -102,6 +102,16 @@ bash "$SCRIPT_DIR/05_run_services.sh" || { log_error "Running Services failed"; log_success "Running Services complete!" log_info "Step 6: Generating Final Report..." +# --- Installation Summary --- +log_info "Installation Summary. The following steps were performed by the scripts:" +log_success "- System updated and basic utilities installed" +log_success "- Firewall (UFW) configured and enabled" +log_success "- Fail2Ban activated for brute-force protection" +log_success "- Automatic security updates enabled" +log_success "- Docker and Docker Compose installed" +log_success "- '.env' generated with secure passwords and secrets" +log_success "- Services launched via Docker Compose" + bash "$SCRIPT_DIR/06_final_report.sh" || { log_error "Final Report Generation failed"; exit 1; } log_success "Final Report Generation complete!"