2024-10-09 12:35:02 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# this shell script can be run on the build system to
|
|
|
|
# min-copy-closure the system configuration onto the device
|
|
|
|
# and reboot/restart services as requested
|
|
|
|
|
|
|
|
die() {
|
|
|
|
echo "$@"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2024-10-10 15:25:00 +00:00
|
|
|
# add min-copy-closure to the path. removing junk characters
|
|
|
|
# inserted by default.nix (q.v.)
|
|
|
|
min_copy_closure=@min-copy-closure@; PATH=${min_copy_closure//_/}/bin:$PATH
|
2024-10-09 12:35:02 +00:00
|
|
|
|
|
|
|
ssh_command=${SSH_COMMAND-ssh}
|
|
|
|
|
|
|
|
reboot="reboot"
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
"--no-reboot")
|
|
|
|
unset reboot
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
"--fast")
|
|
|
|
reboot="soft"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
target_host=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
test -n "$target_host" || \
|
|
|
|
die "Usage: $0 [--no-reboot] [--fast] target-host"
|
|
|
|
|
2024-10-09 17:59:33 +00:00
|
|
|
toplevel=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && readlink `pwd` )
|
2024-10-09 12:35:02 +00:00
|
|
|
test -e $toplevel/etc/nix-store-paths || die "missing etc/nix-store-paths, is this really a system configuration?"
|
|
|
|
echo installing from systemConfiguration $toplevel to host $target_host
|
|
|
|
|
|
|
|
min-copy-closure $target_host $toplevel
|
2024-10-10 15:25:00 +00:00
|
|
|
set -x
|
2024-10-09 12:35:02 +00:00
|
|
|
$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
|