summaryrefslogtreecommitdiffstats
path: root/modules/certbot
diff options
context:
space:
mode:
Diffstat (limited to 'modules/certbot')
-rw-r--r--modules/certbot/manifests/init.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/certbot/manifests/init.pp b/modules/certbot/manifests/init.pp
index 36ba279..40f061c 100644
--- a/modules/certbot/manifests/init.pp
+++ b/modules/certbot/manifests/init.pp
@@ -2,7 +2,11 @@ class certbot {
include cron
include nginx
- package { 'certbot':
+ package {
+ [
+ 'certbot',
+ 'certbot-nginx',
+ ]:
ensure => installed;
}
@@ -32,6 +36,7 @@ class certbot {
require => [
Package["certbot"],
Package["nginx"],
+ Package["certbot-nginx"],
],
}
}