- lib/distro.sh: add DISTRO_CODENAME from VERSION_CODENAME; remove unused REPO_ADD_RPM variable; export DISTRO_CODENAME - stages/01-repos.sh: replace repeated '. /etc/os-release' subshell calls with $DISTRO_CODENAME in Docker and Tailscale repo lines - stages/00-envcheck.sh: combine four mkdir -p calls into one - stages/02-packages.sh: remove identical if/else branches in fd symlink block; both branches were the same command - stages/03-toolchains.sh: set NVM_DIR once before the if/else instead of twice; remove dead commented-out duplicate curl line - stages/04-shell.sh: capture $(date +%Y%m%d) into _bak_date once per backup and reuse in cp and warn to avoid redundant forks - stages/06-scripts.sh: split 'export VAR=$(cmd)' into assignment + export to correctly propagate errors under set -euo pipefail - stages/07-uv-projects.sh: remove unused has_package_json field (always false, never read); fix stage completion message 06 -> 07 - stages/08-systemd.sh: remove mempi-sync.timer (deploy, enable, header comment); deploy mempi-sync.service only - stages/09-desktop.sh: remove duplicate mkdir -p in COSMIC section; remove unused repo_url parameter from install_nerd_font() - stages/12-other-apps.sh: replace manual distro branch for Nextcloud with pkg_install_mapped - config/scripts/bw-load-ssh.sh: split 'export BW_SESSION=$(cat ...)' into assignment + export - config/systemd/mempi-sync.timer: delete file
40 lines
1.4 KiB
Bash
Executable File
40 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# ===========================================================================
|
|
# Stage 00: Environment Checks
|
|
# Verifies we can proceed: distro detected, sudo available, dirs exist.
|
|
# Distro detection is handled by lib/distro.sh (sourced by provision.sh).
|
|
# ===========================================================================
|
|
|
|
info "Distribution: ${DISTRO_ID} ${DISTRO_VERSION} (${DISTRO_FAMILY} family)"
|
|
info "Package manager: ${PKG_MGR}"
|
|
|
|
# ---- Sudo access ----
|
|
info "Checking sudo access..."
|
|
if ! sudo -n true 2>/dev/null; then
|
|
info "Sudo access required. You may be prompted for your password."
|
|
sudo -v || { error "Sudo required for provisioning."; exit 1; }
|
|
fi
|
|
ok "Sudo access confirmed."
|
|
|
|
# Keep sudo timestamp fresh
|
|
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
|
|
|
|
# ---- Directory structure ----
|
|
info "Setting up directory structure..."
|
|
mkdir -p "$HOME/Development" "$HOME/.local/bin" "$HOME/.config" "$HOME/.local/share"
|
|
ok "Directory structure ready."
|
|
|
|
# ---- Internet check ----
|
|
info "Checking internet connectivity..."
|
|
if ! ping -c 1 -W 3 google.com &>/dev/null && ! ping -c 1 -W 3 github.com &>/dev/null; then
|
|
warn "No internet detected. Some steps may fail."
|
|
else
|
|
ok "Internet connectivity confirmed."
|
|
fi
|
|
|
|
# ---- Package cache update (first time) ----
|
|
info "Updating package cache (first run)..."
|
|
$PKG_UPDATE 2>/dev/null || warn "Package cache update had issues."
|
|
|
|
ok "Stage 00 complete."
|