2023-05-17 16:03:45 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-05-17 23:49:10 +02:00
|
|
|
ssh_command=${SSH_COMMAND-ssh}
|
2023-05-17 16:03:45 +02:00
|
|
|
target_host=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [ -z "$target_host" ] ; then
|
|
|
|
echo Usage: liminix-rebuild target-host params
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
toplevel=$(nix-build "$@" -A outputs.systemConfiguration --no-out-link)
|
|
|
|
min-copy-closure $target_host $toplevel
|
2023-05-17 23:49:10 +02:00
|
|
|
$ssh_command $target_host cp -v -fP $toplevel/bin/* /persist
|
|
|
|
$ssh_command $target_host "sync; reboot"
|