diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-01-28 15:53:03 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-01-28 15:53:03 +0100 |
commit | eff80711f303ebce132bc7a77c282cb2af731293 (patch) | |
tree | 6e0585c2947e9551a4956fd86c723978819460b3 /gnu/services | |
parent | eb9adede34ff5758fb733b7fd60094d8a42b34e7 (diff) | |
download | guix-eff80711f303ebce132bc7a77c282cb2af731293.tar.gz |
services: cuirass: Add log-file support.
* gnu/services/cuirass.scm (cuirass-remote-worker-shepherd-service): Add log-file support. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/cuirass.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/services/cuirass.scm b/gnu/services/cuirass.scm index f771132652..8af19ca741 100644 --- a/gnu/services/cuirass.scm +++ b/gnu/services/cuirass.scm @@ -306,7 +306,7 @@ "Return a <shepherd-service> for the Cuirass remote worker service with CONFIG." (match-record config <cuirass-remote-worker-configuration> - (cuirass workers systems publish-port public-key private-key) + (cuirass workers systems log-file publish-port public-key private-key) (list (shepherd-service (documentation "Run Cuirass remote build worker.") (provision '(cuirass-remote-worker)) @@ -334,7 +334,8 @@ CONFIG." (list (string-append "--private-key=" private-key)) - '())))) + '())) + #:log-file #$log-file)) (stop #~(make-kill-destructor)))))) (define cuirass-remote-worker-service-type |