mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
remote: Use (%daemon-socket-uri) rather than hard-coded path.
* guix/remote.scm (remote-eval): Use (%daemon-socket-uri) as the default value of 'socket-name' rather than hard-coded path.
This commit is contained in:
parent
3967a946c6
commit
5f32531770
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ (define* (remote-eval exp session
|
|||
(build-locally? #t)
|
||||
(system (%current-system))
|
||||
(module-path %load-path)
|
||||
(socket-name "/var/guix/daemon-socket/socket")
|
||||
(socket-name (%daemon-socket-uri))
|
||||
(become-command #f))
|
||||
"Evaluate EXP, a gexp, on the host at SESSION, an SSH session. Ensure that
|
||||
all the elements EXP refers to are built and deployed to SESSION beforehand.
|
||||
|
|
Loading…
Reference in a new issue