mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: cuirass: Reverse the no-publish logic.
This is a follow-up of d128c6fd33
.
* gnu/services/cuirass.scm (<cuirass-remote-server-configuration>)
[no-publish?]: Rename it to ...
[publish?]: ... this new field.
(cuirass-shepherd-service): Adapt it.
* doc/guix.texi (Cuirass remote building): Document it.
This commit is contained in:
parent
2caf9eafb6
commit
cfd2442488
2 changed files with 10 additions and 10 deletions
|
@ -27889,10 +27889,10 @@ Use @var{cache} directory to cache build log files.
|
|||
Once a substitute is successfully fetched, trigger substitute baking at
|
||||
@var{trigger-url}.
|
||||
|
||||
@item @code{no-publish} (default: @code{#f})
|
||||
Do not start a publish server and ignore the @code{publish-port}
|
||||
argument. This can be useful if there is already a standalone publish
|
||||
server standing next to the remote server.
|
||||
@item @code{publish?} (default: @code{#t})
|
||||
If set to false, do not start a publish server and ignore the
|
||||
@code{publish-port} argument. This can be useful if there is already a
|
||||
standalone publish server standing next to the remote server.
|
||||
|
||||
@item @code{public-key}
|
||||
@item @code{private-key}
|
||||
|
|
|
@ -73,8 +73,8 @@ (define-record-type* <cuirass-remote-server-configuration>
|
|||
(default "/var/log/cuirass-remote-server.log"))
|
||||
(cache cuirass-remote-server-configuration-cache ;string
|
||||
(default "/var/cache/cuirass/remote/"))
|
||||
(no-publish? cuirass-remote-server-configuration-no-publish? ;boolean
|
||||
(default #f))
|
||||
(publish? cuirass-remote-server-configuration-publish? ;boolean
|
||||
(default #t))
|
||||
(trigger-url cuirass-remote-server-trigger-url ;string
|
||||
(default #f))
|
||||
(public-key cuirass-remote-server-configuration-public-key ;string
|
||||
|
@ -194,7 +194,7 @@ (define (cuirass-shepherd-service config)
|
|||
(stop #~(make-kill-destructor)))
|
||||
,@(if remote-server
|
||||
(match-record remote-server <cuirass-remote-server-configuration>
|
||||
(backend-port publish-port log-file cache no-publish?
|
||||
(backend-port publish-port log-file cache publish?
|
||||
trigger-url public-key private-key)
|
||||
(list
|
||||
(shepherd-service
|
||||
|
@ -228,9 +228,9 @@ (define (cuirass-shepherd-service config)
|
|||
"--trigger-substitute-url="
|
||||
trigger-url))
|
||||
'())
|
||||
#$@(if no-publish?
|
||||
(list "--no-publish")
|
||||
'())
|
||||
#$@(if publish?
|
||||
'()
|
||||
(list "--no-publish"))
|
||||
#$@(if public-key
|
||||
(list
|
||||
(string-append "--public-key="
|
||||
|
|
Loading…
Reference in a new issue