Archived
Merge pull request 'fix(gc-hosts): fix pve1 PATH and discovery sudo prompts' (#103) from worktree-crispy-churning-kernighan into main
Check NixOS configurations / eval-hosts (push) Successful in 10m23s
Check NixOS configurations / eval-hosts (push) Successful in 10m23s
Reviewed-on: #103
This commit was merged in pull request #103.
This commit is contained in:
+17
-12
@@ -14,8 +14,8 @@
|
|||||||
# "nix-collect-garbage -d" if sudo needs a password — still collects
|
# "nix-collect-garbage -d" if sudo needs a password — still collects
|
||||||
# unreferenced store paths and old nixos-user profile generations, but leaves
|
# unreferenced store paths and old nixos-user profile generations, but leaves
|
||||||
# old system generations in place.
|
# old system generations in place.
|
||||||
# pve1: runs "nix-collect-garbage -d" as the login user (no system generations
|
# pve1: runs "bash -l -c nix-collect-garbage -d" as the login user so
|
||||||
# on a non-NixOS host).
|
# /etc/profile is sourced and the Nix daemon's PATH is set up automatically.
|
||||||
#
|
#
|
||||||
# Usage (from repo root):
|
# Usage (from repo root):
|
||||||
# bash scripts/gc-hosts.sh [--dry-run]
|
# bash scripts/gc-hosts.sh [--dry-run]
|
||||||
@@ -30,7 +30,12 @@ source scripts/lib/nix-eval.sh 2>/dev/null || true
|
|||||||
: "${MAX_JOBS:=8}"
|
: "${MAX_JOBS:=8}"
|
||||||
: "${NIXOS_USER:=nixos}"
|
: "${NIXOS_USER:=nixos}"
|
||||||
: "${PVE1_SSH_USER:=${PROXMOX_SSH_USER:-wayne}}"
|
: "${PVE1_SSH_USER:=${PROXMOX_SSH_USER:-wayne}}"
|
||||||
|
|
||||||
|
# GC connections use BatchMode — no interactive prompts, just succeed or fail.
|
||||||
SSH_OPTS=(-o StrictHostKeyChecking=no -o BatchMode=yes -o ConnectTimeout=10)
|
SSH_OPTS=(-o StrictHostKeyChecking=no -o BatchMode=yes -o ConnectTimeout=10)
|
||||||
|
# Discovery connections do NOT use BatchMode so that sudo can prompt if needed
|
||||||
|
# (pct/qm list require root access on Proxmox).
|
||||||
|
SSH_QUERY_OPTS=(-o StrictHostKeyChecking=no -o ConnectTimeout=10)
|
||||||
|
|
||||||
DRY_RUN=0
|
DRY_RUN=0
|
||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
@@ -44,7 +49,7 @@ done
|
|||||||
|
|
||||||
# ORDERED_HOSTS: names in display/execution order.
|
# ORDERED_HOSTS: names in display/execution order.
|
||||||
# HOST_TARGET[name]: SSH target string (user@host).
|
# HOST_TARGET[name]: SSH target string (user@host).
|
||||||
# HOST_TYPE[name]: "nixos" (try sudo gc, fallback user) | "nix" (user gc only).
|
# HOST_TYPE[name]: "nixos" (try sudo gc, fallback user) | "nix" (login-shell gc).
|
||||||
declare -a ORDERED_HOSTS=()
|
declare -a ORDERED_HOSTS=()
|
||||||
declare -A HOST_TARGET=()
|
declare -A HOST_TARGET=()
|
||||||
declare -A HOST_TYPE=()
|
declare -A HOST_TYPE=()
|
||||||
@@ -78,10 +83,10 @@ if ! hostname_map="$(
|
|||||||
echo " warning: flake eval failed — skipping dynamic host discovery" >&2
|
echo " warning: flake eval failed — skipping dynamic host discovery" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get names of all currently running guests from pve1.
|
# SSH_QUERY_OPTS (no BatchMode) so sudo can prompt if wayne's sudo needs a password.
|
||||||
if ssh "${SSH_OPTS[@]}" "${PVE1_SSH_USER}@${PVE1_HOST}" "true" 2>/dev/null; then
|
if ssh "${SSH_QUERY_OPTS[@]}" "${PVE1_SSH_USER}@${PVE1_HOST}" "true" 2>/dev/null; then
|
||||||
running_guests="$(
|
running_guests="$(
|
||||||
ssh "${SSH_OPTS[@]}" "${PVE1_SSH_USER}@${PVE1_HOST}" bash <<'REMOTE'
|
ssh "${SSH_QUERY_OPTS[@]}" "${PVE1_SSH_USER}@${PVE1_HOST}" bash <<'REMOTE'
|
||||||
{ sudo pct list 2>/dev/null | awk 'NR>1 && $2=="running" { print $NF }';
|
{ sudo pct list 2>/dev/null | awk 'NR>1 && $2=="running" { print $NF }';
|
||||||
sudo qm list 2>/dev/null | awk 'NR>1 && $3=="running" { print $2 }'; } | sort -u
|
sudo qm list 2>/dev/null | awk 'NR>1 && $3=="running" { print $2 }'; } | sort -u
|
||||||
REMOTE
|
REMOTE
|
||||||
@@ -95,7 +100,7 @@ REMOTE
|
|||||||
| jq -r --arg g "$guest" '.[$g] // empty' 2>/dev/null || true)"
|
| jq -r --arg g "$guest" '.[$g] // empty' 2>/dev/null || true)"
|
||||||
[[ -z "$hostname" ]] && continue
|
[[ -z "$hostname" ]] && continue
|
||||||
|
|
||||||
# Exclude nix-cache and any target whose hostname is already in our list.
|
# Exclude nix-cache and any hostname already in the list.
|
||||||
case "$hostname" in nix-cache) continue ;; esac
|
case "$hostname" in nix-cache) continue ;; esac
|
||||||
if [[ -n "${_SEEN_HOSTNAMES[$hostname]+_}" ]]; then continue; fi
|
if [[ -n "${_SEEN_HOSTNAMES[$hostname]+_}" ]]; then continue; fi
|
||||||
|
|
||||||
@@ -121,7 +126,7 @@ if [[ "$DRY_RUN" -eq 1 ]]; then
|
|||||||
echo " ssh ${SSH_OPTS[*]} $target 'sudo -n nix-collect-garbage -d'"
|
echo " ssh ${SSH_OPTS[*]} $target 'sudo -n nix-collect-garbage -d'"
|
||||||
echo " # fallback: ssh ... $target 'nix-collect-garbage -d'"
|
echo " # fallback: ssh ... $target 'nix-collect-garbage -d'"
|
||||||
else
|
else
|
||||||
echo " ssh ${SSH_OPTS[*]} $target '. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && nix-collect-garbage -d'"
|
echo " ssh ${SSH_OPTS[*]} $target 'bash -l -c nix-collect-garbage -d'"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
@@ -147,10 +152,10 @@ gc_one() {
|
|||||||
echo "ok(user)"; return
|
echo "ok(user)"; return
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# Non-NixOS node: BatchMode SSH doesn't source the Nix daemon profile, so
|
# Non-NixOS node: use a login shell so /etc/profile is sourced and the
|
||||||
# nix-collect-garbage won't be on PATH unless we source it explicitly.
|
# Nix daemon's bin dir is on PATH (set up by /etc/profile.d/nix-daemon.sh
|
||||||
local nix_profile='. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh 2>/dev/null || true'
|
# which the Nix installer adds to /etc/profile).
|
||||||
if ssh "${SSH_OPTS[@]}" "$target" "$nix_profile && nix-collect-garbage -d" \
|
if ssh "${SSH_OPTS[@]}" "$target" "bash -l -c 'nix-collect-garbage -d'" \
|
||||||
>>"$logfile" 2>>"$logfile"; then
|
>>"$logfile" 2>>"$logfile"; then
|
||||||
echo "ok"; return
|
echo "ok"; return
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user