mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
pkgs.krops.rebuild: allow passing arbitrary args
This commit is contained in:
parent
ba211472ef
commit
5dd80e884a
1 changed files with 5 additions and 3 deletions
|
@ -4,7 +4,7 @@ in
|
|||
|
||||
{ exec, nix, openssh, populate, writeDash }: rec {
|
||||
|
||||
rebuild = target:
|
||||
rebuild = args: target:
|
||||
exec "rebuild.${target.host}" rec {
|
||||
filename = "${openssh}/bin/ssh";
|
||||
argv = [
|
||||
|
@ -12,7 +12,9 @@ in
|
|||
"-l" target.user
|
||||
"-p" target.port
|
||||
target.host
|
||||
"nixos-rebuild switch -I ${lib.escapeShellArg target.path}"
|
||||
"nixos-rebuild -I ${lib.escapeShellArg target.path} ${
|
||||
lib.concatMapStringsSep " " lib.escapeShellArg args
|
||||
}"
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -22,7 +24,7 @@ in
|
|||
writeDash name ''
|
||||
set -efu
|
||||
${populate { inherit force source; target = target'; }}
|
||||
${rebuild target'}
|
||||
${rebuild ["switch"] target'}
|
||||
'';
|
||||
|
||||
writeTest = name: { force ? false, source, target }: let
|
||||
|
|
Loading…
Reference in a new issue