guix-commits
[Top][All Lists]
Advanced

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

02/02: services: guix: #:authorize-hydra-key? now defaults to #t.


From: Ludovic Courtès
Subject: 02/02: services: guix: #:authorize-hydra-key? now defaults to #t.
Date: Fri, 23 Jan 2015 22:49:29 +0000

civodul pushed a commit to branch master
in repository guix.

commit 02bb6b45e472131d882c2466f3a4104ee7d56631
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jan 23 18:52:56 2015 +0100

    services: guix: #:authorize-hydra-key? now defaults to #t.
    
    * gnu/services/base.scm (guix-service): Change AUTHORIZE-HYDRA-KEY?
      default value to #t.
---
 doc/guix.texi         |    2 +-
 gnu/services/base.scm |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index bbec110..0d2a613 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4385,7 +4385,7 @@ settings.
 
 @deffn {Monadic Procedure} guix-service [#:guix guix] @
        [#:builder-group "guixbuild"] [#:build-accounts 10] @
-       [#:authorize-hydra-key? #f] [#:use-substitutes? #t] @
+       [#:authorize-hydra-key? #t] [#:use-substitutes? #t] @
        [#:extra-options '()]
 Return a service that runs the build daemon from @var{guix}, and has
 @var{build-accounts} user accounts available under @var{builder-group}.
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index d55eb3a..17dd0fb 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -598,7 +598,7 @@ GUIX."
 failed to register hydra.gnu.org public key: ~a~%" status))))))))
 
 (define* (guix-service #:key (guix guix) (builder-group "guixbuild")
-                       (build-accounts 10) authorize-hydra-key?
+                       (build-accounts 10) (authorize-hydra-key? #t)
                        (use-substitutes? #t)
                        (extra-options '()))
   "Return a service that runs the build daemon from @var{guix}, and has



reply via email to

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