[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: hydra: overdrive: Accept binaries from Ludo's laptop.
From: |
Ludovic Courtès |
Subject: |
02/02: hydra: overdrive: Accept binaries from Ludo's laptop. |
Date: |
Mon, 18 Jan 2021 12:45:55 -0500 (EST) |
civodul pushed a commit to branch master
in repository maintenance.
commit e59d436ca99005d15c5c7b21ddd12c0627d06f5d
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jan 18 18:45:15 2021 +0100
hydra: overdrive: Accept binaries from Ludo's laptop.
* hydra/keys/guix/ludo-laptop-export.pub: New file.
* hydra/overdrive.scm (%authorized-guix-keys): Add it.
---
hydra/keys/guix/ludo-laptop-export.pub | 6 ++++++
hydra/overdrive.scm | 8 ++++++--
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/hydra/keys/guix/ludo-laptop-export.pub
b/hydra/keys/guix/ludo-laptop-export.pub
new file mode 100644
index 0000000..157f990
--- /dev/null
+++ b/hydra/keys/guix/ludo-laptop-export.pub
@@ -0,0 +1,6 @@
+(public-key
+ (ecc
+ (curve Ed25519)
+ (q #460C868BFBC6DB6CBD17CEFF2152ABDCC67ED891953161DB7FA892CBA3C13B0F#)
+ )
+ )
diff --git a/hydra/overdrive.scm b/hydra/overdrive.scm
index 409716a..66d78dd 100644
--- a/hydra/overdrive.scm
+++ b/hydra/overdrive.scm
@@ -1,5 +1,5 @@
;; GuixSD configuration file for the SoftIron OverDrive 1000 build machines.
-;; Copyright © 2016, 2017, 2018, 2020 Ludovic Courtès <ludo@gnu.org>
+;; Copyright © 2016, 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;; Released under the GNU GPLv3 or any later version.
(use-modules (guix) (gnu))
@@ -28,7 +28,11 @@
(define %authorized-guix-keys
;; List of authorized 'guix archive' keys.
- (list (local-file "keys/guix/berlin.guixsd.org-export.pub")))
+ (list (local-file "keys/guix/berlin.guixsd.org-export.pub")
+
+ ;; Exceptionally, allow exports from Ludo's laptop. This is
+ ;; necessary for the release process.
+ (local-file "keys/guix/ludo-laptop-export.pub")))
(define gc-job
;; Run 'guix gc' at 3AM every day.