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

16 lines
386 B
Bash
Raw Normal View History

2023-05-17 14:03:45 +00:00
#!/usr/bin/env bash
ssh_command=${SSH_COMMAND-ssh}
2023-05-17 14:03:45 +00: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
$ssh_command $target_host cp -v -fP $toplevel/bin/* /persist
$ssh_command $target_host "sync; reboot"