diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2017-04-21 19:13:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-21 19:17:36 +0200 |
commit | 285f63e805f4a895c1d301efe6d40e93c4e2f704 (patch) | |
tree | abe2a16994bc1362ad6b51a3d8a1efcd1f092c57 /Makefile.am | |
parent | e537833726cb093f101566793e083098d04ac58b (diff) | |
download | guix-285f63e805f4a895c1d301efe6d40e93c4e2f704.tar guix-285f63e805f4a895c1d301efe6d40e93c4e2f704.tar.gz |
store: Support 'ssh://' URIs in 'GUIX_DAEMON_SOCKET'.
This allows 'guix' commands to talk to a remote store over SSH.
* guix/store.scm (connect-to-daemon)[connect]: Call 'resolve-interface'
for unknown URI schemes.
* guix/store/ssh.scm: New file.
* Makefile.am (MODULES): Add it.
* doc/guix.texi (The Store): Document it. Mark remote access as
experimental.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index a997ed8b99..db4ebe04dc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -187,7 +187,8 @@ if HAVE_GUILE_SSH MODULES += \ guix/ssh.scm \ - guix/scripts/copy.scm + guix/scripts/copy.scm \ + guix/store/ssh.scm endif HAVE_GUILE_SSH |