liminix/pkgs/min-copy-closure/liminix-rebuild.sh

49 lines
863 B
Bash
Raw Permalink Normal View History

2023-05-17 16:03:45 +02:00
#!/usr/bin/env bash
set -Eeuo pipefail
2023-05-17 16:03:45 +02:00
ssh_command=${SSH_COMMAND-ssh}
reboot="reboot"
case "$1" in
"--no-reboot")
unset reboot
shift
;;
"--fast")
reboot="soft"
shift
;;
"--root")
root_prefix="$2"
shift
shift
;;
esac
2023-12-27 18:47:42 +01:00
2023-05-17 16:03:45 +02:00
target_host=$1
shift
if [ -z "$target_host" ] ; then
echo Usage: liminix-rebuild \[--no-reboot\] \[--fast\] target-host params
2023-05-17 16:03:45 +02:00
exit 1
fi
if toplevel=$(nix-build "$@" -A outputs.systemConfiguration --no-out-link); then
echo systemConfiguration $toplevel
min-copy-closure --root "$root_prefix" $target_host $toplevel
$ssh_command $target_host $toplevel/bin/install
case "$reboot" in
reboot)
$ssh_command $target_host "sync; source /etc/profile; reboot"
;;
soft)
$ssh_command $target_host $toplevel/bin/restart-services
;;
*)
;;
esac
else
echo Rebuild failed
fi