Skip to content
Snippets Groups Projects
Commit aedbf9b8 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

offload: 'remote-pipe' uses the right SSH key.

* guix/scripts/offload.scm (remote-pipe): Pass -i when invoking
  %LSHG-COMMAND.
parent 165f4b2a
No related branches found
No related tags found
No related merge requests found
...@@ -161,6 +161,10 @@ (define (remote-pipe machine mode command) ...@@ -161,6 +161,10 @@ (define (remote-pipe machine mode command)
(lambda () (lambda ()
(apply open-pipe* mode %lshg-command (apply open-pipe* mode %lshg-command
"-l" (build-machine-user machine) "-z" "-l" (build-machine-user machine) "-z"
;; XXX: Remove '-i' when %LSHG-COMMAND really is lshg.
"-i" (build-machine-private-key machine)
(build-machine-name machine) (build-machine-name machine)
command)) command))
(lambda args (lambda args
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment