diff options
author | jgart <jgart@dismail.de> | 2022-12-25 15:03:17 -0600 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-03 16:34:44 -0500 |
commit | c13c890138545bfda1807ad60e70971736ddf5b5 (patch) | |
tree | fcf5323b673b174bade458890417a4989e9d51af /gnu | |
parent | 4dab99ac9f003b116c4382e172a4e772742d221a (diff) | |
download | guix-c13c890138545bfda1807ad60e70971736ddf5b5.tar.gz |
services: certbot: Fix broken link.
* gnu/services/certbot.scm (certbot-renewal-jobs): Fix broken link. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/certbot.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm index 7dfdad9874..8e6784df2b 100644 --- a/gnu/services/certbot.scm +++ b/gnu/services/certbot.scm @@ -148,7 +148,7 @@ (define (certbot-renewal-jobs config) (list ;; Attempt to renew the certificates twice per day, at a random minute - ;; within the hour. See https://certbot.eff.org/all-instructions/. + ;; within the hour. See https://eff-certbot.readthedocs.io/. #~(job '(next-minute-from (next-hour '(0 12)) (list (random 60))) #$(certbot-command config)))) |