chore: add versioned snapshot setup_v0.9.5.sh, reset VERSION to 0.9.5
Introduces the versioned-snapshot naming convention: each release creates a new setup_v<X.Y.Z>.sh file alongside the live setup.sh; old snapshots are never removed. Resets VERSION from 1.0.0 to 0.9.5. https://claude.ai/code/session_01Y4dMKtkqkpvmgDKoRdzhTG
This commit is contained in:
+12
-2
@@ -1,8 +1,18 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project. Versions follow `MAJOR.MINOR.PATCH`.
|
||||
The project is pre-1.0 while the modular system reaches parity with the
|
||||
monolithic `ubuntu-post-install-*.sh` scripts.
|
||||
|
||||
## [0.9.5] - 2026-06-03
|
||||
|
||||
### Changed
|
||||
- VERSION reset from 1.0.0 to 0.9.5 — versioning now tracks `setup_v<X.Y.Z>.sh`
|
||||
snapshot files. Each release creates a new numbered file (old files stay). The
|
||||
current `setup.sh` is always the live version; `setup_v0.9.5.sh` is the first
|
||||
named snapshot.
|
||||
|
||||
### Added
|
||||
- `setup_v0.9.5.sh` — first versioned snapshot of `setup.sh`. Future changes
|
||||
produce `setup_v0.9.6.sh`, etc. Previous snapshots are never removed.
|
||||
|
||||
## [1.0.0] - 2026-06-03
|
||||
|
||||
|
||||
Executable
+209
@@ -0,0 +1,209 @@
|
||||
#!/bin/bash
|
||||
# setup.sh — modular post-install dispatcher.
|
||||
#
|
||||
# One source of truth, multiple ways to run it:
|
||||
# sudo ./setup.sh guided install: required packages, then a
|
||||
# category menu you loop through
|
||||
# sudo ./setup.sh <service> ... install one or more services directly
|
||||
# ./setup.sh --list list available services (grouped)
|
||||
# ./setup.sh --version print version
|
||||
#
|
||||
# Flags:
|
||||
# --dry-run preview actions without making changes
|
||||
# --unattended use defaults, no prompts (pair with explicit service names)
|
||||
#
|
||||
# Every service lives in services/<name>.sh, registers itself with
|
||||
# register_service, and defines install_<name>. Adding a service = adding one
|
||||
# file; it appears in the menu automatically. Nothing is generated.
|
||||
set -uo pipefail
|
||||
|
||||
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
# Category display order (groups not listed here are appended alphabetically).
|
||||
CATEGORY_ORDER=(base homelab utilities media cameras gaming extras backup)
|
||||
# Service ordering hint within a category (lower = earlier). Default 50.
|
||||
declare -A SERVICE_PRIORITY=( [caddy]=1 [crowdsec]=2 [authelia]=3 )
|
||||
|
||||
# ── Parse flags / collect service names ──────────────────────────────────────
|
||||
DRY_RUN=false; UNATTENDED=false; DO_LIST=false
|
||||
REQUESTED=()
|
||||
for arg in "$@"; do
|
||||
case "$arg" in
|
||||
--dry-run) DRY_RUN=true ;;
|
||||
--unattended) UNATTENDED=true ;;
|
||||
--list|-l) DO_LIST=true ;;
|
||||
--version|-V) cat "$HERE/VERSION" 2>/dev/null || echo "unknown"; exit 0 ;;
|
||||
-h|--help) sed -n '2,18p' "${BASH_SOURCE[0]}" | sed 's/^# \{0,1\}//'; exit 0 ;;
|
||||
-*) echo "Unknown flag: $arg" >&2; exit 1 ;;
|
||||
*) REQUESTED+=("$arg") ;;
|
||||
esac
|
||||
done
|
||||
export DRY_RUN UNATTENDED
|
||||
|
||||
# ── Load helpers + all service modules (they self-register) ──────────────────
|
||||
# shellcheck source=lib/common.sh
|
||||
source "$HERE/lib/common.sh"
|
||||
shopt -s nullglob
|
||||
for _mod in "$HERE"/services/*.sh; do source "$_mod"; done
|
||||
shopt -u nullglob
|
||||
|
||||
# ── Helpers over the registry ────────────────────────────────────────────────
|
||||
# Groups present, in CATEGORY_ORDER first, then any extras alphabetically.
|
||||
groups_present() {
|
||||
local g present=() seen=" "
|
||||
for name in "${SERVICE_ORDER[@]}"; do
|
||||
g="${SERVICE_GROUP[$name]}"
|
||||
case "$seen" in *" $g "*) : ;; *) present+=("$g"); seen="$seen$g " ;; esac
|
||||
done
|
||||
local out=()
|
||||
for g in "${CATEGORY_ORDER[@]}"; do
|
||||
printf '%s\n' "${present[@]}" | grep -qx "$g" && out+=("$g")
|
||||
done
|
||||
for g in "${present[@]}"; do
|
||||
printf '%s\n' "${CATEGORY_ORDER[@]}" | grep -qx "$g" || out+=("$g")
|
||||
done
|
||||
printf '%s\n' "${out[@]}"
|
||||
}
|
||||
|
||||
# Services in a group, ordered by SERVICE_PRIORITY then name.
|
||||
services_in_group() {
|
||||
local group="$1" name
|
||||
for name in "${SERVICE_ORDER[@]}"; do
|
||||
[ "${SERVICE_GROUP[$name]}" = "$group" ] && echo "${SERVICE_PRIORITY[$name]:-50} $name"
|
||||
done | sort -n -k1 | awk '{print $2}'
|
||||
}
|
||||
|
||||
# Best-effort "is it already installed?" for the [installed] marker.
|
||||
is_installed() {
|
||||
case "$1" in
|
||||
base) command -v ncdu >/dev/null 2>&1 ;;
|
||||
glow) command -v glow >/dev/null 2>&1 ;;
|
||||
crowdsec) command -v cscli >/dev/null 2>&1 ;;
|
||||
silent-send) [ -d "$ACTUAL_HOME/silent-send/.git" ] ;;
|
||||
linux-to-sync) [ -d "$ACTUAL_HOME/linux-to-sync/.git" ] ;;
|
||||
*) [ -e "$DOCKER_DIR/$1" ] ;;
|
||||
esac
|
||||
}
|
||||
|
||||
run_service() {
|
||||
local name="$1"
|
||||
if [ -z "${SERVICE_GROUP[$name]:-}" ]; then log_error "Unknown service: $name (try --list)"; return 1; fi
|
||||
declare -F "install_${name}" >/dev/null || { log_error "Service '$name' has no install_${name}"; return 1; }
|
||||
log_info "=== ${name} (${SERVICE_DESC[$name]}) ==="
|
||||
"install_${name}"
|
||||
}
|
||||
|
||||
list_services() {
|
||||
local g name
|
||||
while IFS= read -r g; do
|
||||
echo ""; echo "── ${g^^} ──"
|
||||
while IFS= read -r name; do
|
||||
printf " %-16s %s\n" "$name" "${SERVICE_DESC[$name]}"
|
||||
done < <(services_in_group "$g")
|
||||
done < <(groups_present)
|
||||
echo ""
|
||||
}
|
||||
|
||||
# ── --list ───────────────────────────────────────────────────────────────────
|
||||
if [ "$DO_LIST" = true ]; then list_services; exit 0; fi
|
||||
|
||||
# ── Direct install: ./setup.sh caddy homeassistant ──────────────────────────
|
||||
if [ "${#REQUESTED[@]}" -gt 0 ]; then
|
||||
require_root
|
||||
rc=0; for name in "${REQUESTED[@]}"; do run_service "$name" || rc=1; done
|
||||
exit "$rc"
|
||||
fi
|
||||
|
||||
# ── Guided interactive flow ──────────────────────────────────────────────────
|
||||
require_root
|
||||
|
||||
# 1) Show the REQUIRED set and let the user cancel before anything happens.
|
||||
echo ""
|
||||
echo "╔══════════════════════════════════════════════════════════════╗"
|
||||
echo "║ Ubuntu Post-Install · v$(cat "$HERE/VERSION" 2>/dev/null || echo '?')"
|
||||
echo "╚══════════════════════════════════════════════════════════════╝"
|
||||
echo ""
|
||||
echo "REQUIRED (installed/verified first):"
|
||||
echo " • Essential CLI packages: net-tools, git, curl, wget, htop, tree,"
|
||||
echo " ncdu, zip/unzip, jq, rsync, and glow (markdown reader)"
|
||||
echo " • Docker presence check (needed by all containerized services)"
|
||||
echo ""
|
||||
echo "Then you'll get a category menu to pick optional services."
|
||||
echo ""
|
||||
PROCEED=""
|
||||
prompt_yn "Proceed with the required setup? (y/n):" "y" PROCEED
|
||||
if [ "$PROCEED" != "y" ] && [ "$PROCEED" != "Y" ]; then
|
||||
echo "Cancelled. Nothing was changed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# 2) Run required.
|
||||
run_service base
|
||||
if ! command -v docker >/dev/null 2>&1; then
|
||||
log_warning "Docker is not installed. Containerized services need it."
|
||||
echo " Install with: curl -fsSL https://get.docker.com | sh"
|
||||
fi
|
||||
|
||||
# 3) Offer Caddy first (most services proxy through it).
|
||||
if [ -n "${SERVICE_GROUP[caddy]:-}" ] && ! is_installed caddy; then
|
||||
echo ""
|
||||
OFFER_CADDY=""
|
||||
prompt_yn "Install Caddy now? It's the reverse proxy most services use. (y/n):" "y" OFFER_CADDY
|
||||
[ "$OFFER_CADDY" = "y" ] || [ "$OFFER_CADDY" = "Y" ] && run_service caddy
|
||||
fi
|
||||
|
||||
# 4) Category menu loop: pick a category → checklist → install → back to menu.
|
||||
have_whiptail=false
|
||||
command -v whiptail >/dev/null 2>&1 && have_whiptail=true
|
||||
|
||||
while true; do
|
||||
mapfile -t CATS < <(groups_present)
|
||||
|
||||
if [ "$have_whiptail" = true ]; then
|
||||
cat_items=()
|
||||
for g in "${CATS[@]}"; do
|
||||
n=$(services_in_group "$g" | wc -l)
|
||||
cat_items+=("$g" "$n service(s)")
|
||||
done
|
||||
cat_items+=("DONE" "Finish and exit")
|
||||
CHOSEN_CAT=$(whiptail --title "Service Categories" --menu \
|
||||
"Pick a category (services you install come back here):" 22 70 14 \
|
||||
"${cat_items[@]}" 3>&1 1>&2 2>&3) || break
|
||||
else
|
||||
echo ""; echo "Categories:"; i=1
|
||||
for g in "${CATS[@]}"; do echo " $i) $g"; i=$((i+1)); done
|
||||
echo " d) Done"
|
||||
read -rp "Pick a category [d]: " pick
|
||||
[ "$pick" = "d" ] || [ -z "$pick" ] && break
|
||||
CHOSEN_CAT="${CATS[$((pick-1))]:-}"
|
||||
[ -z "$CHOSEN_CAT" ] && { echo "Invalid."; continue; }
|
||||
fi
|
||||
[ "$CHOSEN_CAT" = "DONE" ] && break
|
||||
|
||||
mapfile -t SVCS < <(services_in_group "$CHOSEN_CAT")
|
||||
SELECTED=()
|
||||
if [ "$have_whiptail" = true ]; then
|
||||
svc_items=()
|
||||
for name in "${SVCS[@]}"; do
|
||||
tag="${SERVICE_DESC[$name]}"
|
||||
is_installed "$name" && tag="$tag [installed]"
|
||||
svc_items+=("$name" "$tag" "OFF")
|
||||
done
|
||||
CHOICE=$(whiptail --title "${CHOSEN_CAT^^}" --checklist \
|
||||
"Space to select, Enter to install. Already-installed are marked:" 22 78 14 \
|
||||
"${svc_items[@]}" 3>&1 1>&2 2>&3) || continue
|
||||
eval "SELECTED=($CHOICE)"
|
||||
else
|
||||
echo ""; echo "${CHOSEN_CAT^^}:"
|
||||
for name in "${SVCS[@]}"; do
|
||||
m=""; is_installed "$name" && m=" [installed]"
|
||||
printf " %-16s %s%s\n" "$name" "${SERVICE_DESC[$name]}" "$m"
|
||||
done
|
||||
read -rp "Enter service names to install (space-separated, blank to go back): " -a SELECTED
|
||||
fi
|
||||
|
||||
for name in "${SELECTED[@]}"; do run_service "$name"; done
|
||||
done
|
||||
|
||||
echo ""
|
||||
log_success "Done. Re-run 'sudo ./setup.sh' any time to add more."
|
||||
Reference in New Issue
Block a user