add liminix-rebuild command
This commit is contained in:
@@ -11,5 +11,6 @@
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp min-copy-closure.sh $out/bin/min-copy-closure
|
||||
cp liminix-rebuild.sh $out/bin/liminix-rebuild
|
||||
'';
|
||||
}
|
||||
|
14
pkgs/min-copy-closure/liminix-rebuild.sh
Executable file
14
pkgs/min-copy-closure/liminix-rebuild.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
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 $target_host cp -P $toplevel/bin/\* /
|
||||
ssh $target_host reboot
|
Reference in New Issue
Block a user