Some checks failed
Run nix flake check / flake-check (push) Failing after 1s
Remove the step-ca host and labmon flake input now that ACME has been migrated to OpenBao PKI. Removed: - hosts/ca/ - step-ca host configuration - services/ca/ - step-ca service module - labmon flake input and module (no longer used) Updated: - flake.nix - removed ca host and labmon references - flake.lock - removed labmon input - rebuild-all.sh - removed ca from host list - CLAUDE.md - updated documentation Note: secrets/ca/ should be manually removed by the user. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
308 B
Bash
Executable File
20 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# array of hosts
|
|
HOSTS=(
|
|
"ns1"
|
|
"ns2"
|
|
"ha1"
|
|
"http-proxy"
|
|
"jelly01"
|
|
"monitoring01"
|
|
"nix-cache01"
|
|
"pgdb1"
|
|
)
|
|
|
|
for host in "${HOSTS[@]}"; do
|
|
echo "Rebuilding $host"
|
|
nixos-rebuild boot --flake .#${host} --target-host root@${host}
|
|
done
|