guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services: cuirass: Add log-file support.


From: guix-commits
Subject: branch master updated: services: cuirass: Add log-file support.
Date: Thu, 28 Jan 2021 09:53:30 -0500

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new eff8071  services: cuirass: Add log-file support.
eff8071 is described below

commit eff80711f303ebce132bc7a77c282cb2af731293
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Thu Jan 28 15:53:03 2021 +0100

    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>
---
 gnu/services/cuirass.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/services/cuirass.scm b/gnu/services/cuirass.scm
index f771132..8af19ca 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]