nix/safe-remote-upgrade.bash
2024-08-06 10:33:09 -05:00

50 lines
873 B
Bash
Executable file

#!/usr/bin/env bash
usage() {
echo 'usage'
echo ' safe-remote-upgrade.bash $FLAKE_REF $TARGET_HOST'
}
error() {
echo "error: $1"
usage
}
if [[ -z $1 ]]; then
echo "error: no flake specified"
usage
exit 1
fi
flake="$1"; shift
if [[ -z $1 ]]; then
echo "error: no target host specified"
usage
exit 1
fi
target_host="$1"; shift
set -eu
git add -A
ssh "root@$target_host" "bash -c '
set -m
# sleep 15 mins
echo \"Starting background reboot job...\"
(sleep 900; reboot;) &
jobs -p
disown
'" &
nix run nixpkgs#nixos-rebuild -- --flake "$flake" \
--target-host "root@$target_host" test --show-trace
echo "Upgrade ready for verification. If you still have SSH access you can bail out without waiting with the following command:"
echo " ssh 'root@$target_host' nixos-rebuild --rollback switch"
echo
echo "Waiting..."
wait
echo 'Done!'