diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-11-05 00:47:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-11-25 23:44:20 +0100 |
commit | cf283dd92eb5ef2dee4b761bb23f6dca2525cd55 (patch) | |
tree | df6d63632b09b9a1ec6bf0cd38a24f44e98e7213 /doc | |
parent | e8a5db80d5fe2e603d7b72c3b3cc5ba6ea6d99d9 (diff) | |
download | patches-cf283dd92eb5ef2dee4b761bb23f6dca2525cd55.tar patches-cf283dd92eb5ef2dee4b761bb23f6dca2525cd55.tar.gz |
offload: Rewrite to make direct RPCs to the remote daemon.
* guix/scripts/offload.scm (<build-machine>)[daemon-socket]: New field.
(connect-to-remote-daemon): New procedure.
(%gc-root-file, register-gc-root, remove-gc-roots, offload): Remove.
(transfer-and-offload): Rewrite using 'connect-to-remote-daemon' and
RPCs over SSH.
(store-import-channel, store-export-channel): New procedures.
(send-files, retrieve-files): Rewrite using these.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f1cb007aa9..b8e37055e6 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -921,6 +921,10 @@ Port number of SSH server on the machine. The SSH private key file to use when connecting to the machine, in OpenSSH format. +@item @code{daemon-socket} (default: @code{"/var/guix/daemon-socket/socket"}) +File name of the Unix-domain socket @command{guix-daemon} is listening +to on that machine. + @item @code{parallel-builds} (default: @code{1}) The number of builds that may run in parallel on the machine. |