diff options
author | Richard Sent <richard@freakingpenguin.com> | 2024-05-08 08:00:42 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-03 13:59:33 +0200 |
commit | b300a091654f5c07708e86c0c51af4ac8c71783f (patch) | |
tree | 6af3550369f6f32816c847fd5cba41f87f7dcc94 /gnu/services/certbot.scm | |
parent | c4ce31305258126e0f5809697e084bf97f31f77f (diff) | |
download | guix-b300a091654f5c07708e86c0c51af4ac8c71783f.tar.gz guix-b300a091654f5c07708e86c0c51af4ac8c71783f.zip |
services: certbot: Add certbot-configuration-package to profile.
As the manual suggests running a certbot command to view the issued
certificates, add it to the profile.
* gnu/services/certbot.scm (certbot-service-type): Extend profile-service-type
with certbot-configuration-package.
Change-Id: I92618597bbdc8d838420b2e0f82de601b0bc609b
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services/certbot.scm')
-rw-r--r-- | gnu/services/certbot.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm index f287c8367f..b276c49e0f 100644 --- a/gnu/services/certbot.scm +++ b/gnu/services/certbot.scm @@ -350,6 +350,8 @@ deploy." (extensions (list (service-extension nginx-service-type certbot-nginx-server-configurations) + (service-extension profile-service-type + (compose list certbot-configuration-package)) (service-extension activation-service-type certbot-activation) (service-extension mcron-service-type |