Skip to content
Snippets Groups Projects
Commit ded1012f authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

pki: Introduce 'write-acl', and fix wrong conversion in 'ensure-acl'.

* guix/pki.scm (write-acl): New procedure.
  (ensure-acl): Use it.  Fixes a regression introduced in 39831f16,
  whereby 'ensure-acl' would yield a wrong-type-arg error.
* guix/scripts/archive.scm (authorize-key): Use 'write-acl'.
parent 7864504f
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ (define-module (guix pki)
public-keys->acl
acl->public-keys
authorized-key?
write-acl
signature-sexp
signature-subject
......@@ -83,9 +84,13 @@ (define (ensure-acl)
(mkdir-p (dirname %acl-file))
(with-atomic-file-output %acl-file
(lambda (port)
(display (canonical-sexp->string
(public-keys->acl (list public-key)))
port)))))))
(write-acl (public-keys->acl (list public-key))
port)))))))
(define (write-acl acl port)
"Write ACL to PORT in canonical-sexp format."
(let ((sexp (sexp->canonical-sexp acl)))
(display (canonical-sexp->string sexp) port)))
(define (current-acl)
"Return the current ACL."
......
......@@ -288,9 +288,7 @@ (define (read-key)
(let ((acl (public-keys->acl (cons key (acl->public-keys acl)))))
(mkdir-p (dirname %acl-file))
(with-atomic-file-output %acl-file
(lambda (port)
(display (canonical-sexp->string (sexp->canonical-sexp acl))
port))))))
(cut write-acl acl <>)))))
(define (guix-archive . args)
(define (parse-options)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment