#!/bin/bash # ============================================================================================== # ================================= Array Stop Orchestrator ==================================== # ============================================================================================== # # PURPOSE # ───────────────────────────────────────────────────────────────────────────── # Planned shutdown orchestrator — stops all active processes cleanly before # array maintenance. Runs ARRAY_STOP_SCRIPTS from master.conf sequentially, # each confirmed complete before the next starts. # # ============================================================================================== # OPERATIONAL MODEL # ============================================================================================== # # 1. user_scripts_stop.sh — kill background user scripts (prevents new operations) # 2. rsync_stop.sh --rsync-only — kill rsync; skip container recovery (handled in step 4) # 3. mover_stop.sh — stop mover after rsync (both write to same paths) # 4. docker_container_stop.sh — stop all containers one-by-one with verification # # Unlike array_started.sh, all scripts run in the foreground. Each must complete # (pass or fail) before the next starts — a failed stop is noted but does not # prevent remaining steps from running. # # ============================================================================================== # DESIGN PRINCIPLES # ============================================================================================== # # Order Is Load-Bearing # User scripts are stopped first — they can spawn new rsync or docker operations # mid-shutdown. Rsync stops before mover — both write to the same paths and # running together risks corruption. Containers stop last — apps should stay # available as long as possible during shutdown prep. # # Non-Fatal Steps # A failed stop step is logged and notified but does not abort the sequence. # Remaining scripts still run — a partial stop is better than a halted one. # # ============================================================================================== # OPERATIONAL SAFEGUARDS # ============================================================================================== # # Root check — all stop scripts require root # acquire_lock — prevents concurrent array stop runs # detect_hosts() — MY_ID in notifications and logs # platform_require_cmd — notify validated before use # notify on failures — alert if any stop script fails # # ============================================================================================== # CONFIGURATION # ============================================================================================== # # master.conf # # ARRAY_STOP_SCRIPTS — ordered list of stop scripts to run # # ============================================================================================== # RUNTIME MODES # ============================================================================================== # # array_stopping.sh # Run full stop sequence. # # array_stopping.sh --dry-run # Preview without stopping anything. # # array_stopping.sh --status # Show configured scripts and exit. # # array_stopping.sh --log # Verbose output. # # ============================================================================================== SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" ECOSYSTEM_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" source "$ECOSYSTEM_ROOT/load_config.sh" parse_args "$@" # ============================================================================================== # ━━━ Setup ━━━ # ============================================================================================== if [[ "$EUID" -ne 0 ]]; then error "Must be run as root" exit 1 fi acquire_lock if ! command -v docker &>/dev/null; then error "Docker command not found" exit 1 fi detect_hosts [[ "$DRY_RUN" == true ]] && warn "DRY RUN — no stop scripts will be executed" # ============================================================================================== # ━━━ Status ━━━ # ============================================================================================== if [[ "$SHOW_STATUS" == true ]]; then echo "" echo "━━━━━ $ICON_SUMMARY ARRAY STOP STATUS ━━━━━" echo "$ICON_HOST Identity: $MY_ID ($LOCAL_SERVER_NAME)" echo "$ICON_GEAR Scripts: ${#ARRAY_STOP_SCRIPTS[@]} configured" echo "" for entry in "${ARRAY_STOP_SCRIPTS[@]}"; do [[ -z "$entry" ]] && continue read -r -a parts <<< "$entry" script_path="$ECOSYSTEM_ROOT/${parts[0]}" script_name=$(basename "${parts[0]}") extra_args=("${parts[@]:1}") if [[ ! -f "$script_path" ]]; then echo " $ICON_ERROR $script_name — FILE NOT FOUND" else echo " $ICON_GEAR $script_name${extra_args:+ ${extra_args[*]}}" fi done echo "━━━━━━━━━━━━━━━━━━━━━━━" exit 0 fi # ============================================================================================== # ━━━ Stop Sequence ━━━ # ============================================================================================== echo "" echo "━━━ $ICON_STOP Array Stop — $MY_ID — $(date '+%Y-%m-%d %H:%M:%S') ━━━" echo "$ICON_GEAR Running ${#ARRAY_STOP_SCRIPTS[@]} stop script(s) sequentially..." echo "" START=$(date +%s) PASSED=() FAILED=() STEP=0 for entry in "${ARRAY_STOP_SCRIPTS[@]}"; do [[ -z "$entry" ]] && continue (( STEP++ )) read -r -a parts <<< "$entry" script_path="$ECOSYSTEM_ROOT/${parts[0]}" script_name=$(basename "${parts[0]}") extra_args=("${parts[@]:1}") echo "━━━ $ICON_GEAR Step $STEP: $script_name${extra_args:+ ${extra_args[*]}} ━━━" if [[ ! -f "$script_path" ]]; then error "$script_name — not found at $script_path" FAILED+=("$script_name") echo "" continue fi if [[ ! -x "$script_path" ]]; then warn "$script_name — not executable, fixing..." chmod +x "$script_path" || { error "$script_name — chmod +x failed" FAILED+=("$script_name") echo "" continue } fi if [[ "$DRY_RUN" == true ]]; then warn "DRY RUN — would run: $script_name ${extra_args[*]}" PASSED+=("$script_name") echo "" continue fi if bash "$script_path" "${extra_args[@]}"; then echo "$script_name — done ✅" PASSED+=("$script_name") else warn "$script_name — failed (exit $?) — continuing to next step" FAILED+=("$script_name") fi echo "" done END=$(date +%s) # ============================================================================================== # ━━━ Summary ━━━ # ============================================================================================== echo "━━━━━ $ICON_SUMMARY ARRAY STOP SUMMARY ━━━━━" echo "$ICON_HOST Identity: $MY_ID ($LOCAL_SERVER_NAME)" echo "$ICON_TIME Duration: $(format_duration $(( END - START )))" [[ ${#PASSED[@]} -gt 0 ]] && echo "$ICON_DONE Passed: ${PASSED[*]}" [[ ${#FAILED[@]} -gt 0 ]] && echo "$ICON_ERROR Failed: ${FAILED[*]}" echo "" if [[ "$DRY_RUN" == true ]]; then warn "DRY RUN — no changes made" elif [[ ${#FAILED[@]} -eq 0 ]]; then echo "$ICON_DONE Status: all $STEP step(s) complete ✅" notify "Array stop complete on $(hostname) ($MY_ID) — $STEP step(s) done" \ "Array Stop" "normal" else warn "Status: ${#FAILED[@]} step(s) failed — ${FAILED[*]}" notify "Array stop on $(hostname) ($MY_ID) — ${#FAILED[@]} step(s) failed: ${FAILED[*]}" \ "Array Stop" "warning" fi echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" [[ ${#FAILED[@]} -gt 0 ]] && exit 1 exit 0