guix-commits
[Top][All Lists]
Advanced

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

01/01: services: certbot: Don't try to renew certificates on activation.


From: Clément Lassieur
Subject: 01/01: services: certbot: Don't try to renew certificates on activation.
Date: Tue, 3 Apr 2018 11:01:37 -0400 (EDT)

snape pushed a commit to branch master
in repository guix.

commit f72662968e757ed79eefa1990b5b94d802571632
Author: Clément Lassieur <address@hidden>
Date:   Mon Mar 19 21:10:31 2018 +0100

    services: certbot: Don't try to renew certificates on activation.
    
    Because it takes too much time and it requires networking.
    
    Thanks to Mathieu Othacehe for suggesting this.
    
    * gnu/services/certbot.scm (certbot-activation): Do not run the renewal
    command, copy its path to a fixed location, display it, so that the user can
    run the command when they want.
---
 gnu/services/certbot.scm | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index a2a200f..7548145 100644
--- a/gnu/services/certbot.scm
+++ b/gnu/services/certbot.scm
@@ -26,6 +26,7 @@
   #:use-module (gnu services web)
   #:use-module (gnu system shadow)
   #:use-module (gnu packages tls)
+  #:use-module (guix i18n)
   #:use-module (guix records)
   #:use-module (guix gexp)
   #:use-module (srfi srfi-1)
@@ -113,14 +114,19 @@
           #$(certbot-command config))))
 
 (define (certbot-activation config)
-  (match config
-    (($ <certbot-configuration> package webroot certificates email
-                                rsa-key-size default-location)
-     (with-imported-modules '((guix build utils))
-       #~(begin
-           (use-modules (guix build utils))
-           (mkdir-p #$webroot)
-           (zero? (system* #$(certbot-command config))))))))
+  (let* ((certbot-directory "/var/lib/certbot")
+         (script (in-vicinity certbot-directory "renew-certificates"))
+         (message (format #f (G_ "~a may need to be run~%") script)))
+    (match config
+      (($ <certbot-configuration> package webroot certificates email
+                                  rsa-key-size default-location)
+       (with-imported-modules '((guix build utils))
+         #~(begin
+             (use-modules (guix build utils))
+             (mkdir-p #$webroot)
+             (mkdir-p #$certbot-directory)
+             (copy-file #$(certbot-command config) #$script)
+             (display #$message)))))))
 
 (define certbot-nginx-server-configurations
   (match-lambda



reply via email to

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