summaryrefslogtreecommitdiffstats
path: root/modules/certbot
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-10 04:22:21 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-10 04:22:21 -0400
commitaefa11df95e3dae76c8d845333fbfbfdaa602d95 (patch)
treeea1a8673865ce84963f16a442cf081dbddacfa21 /modules/certbot
parentd676dd95dbab99393c89dc1c096f4d2522281277 (diff)
downloadpuppet-tozt-aefa11df95e3dae76c8d845333fbfbfdaa602d95.tar.gz
puppet-tozt-aefa11df95e3dae76c8d845333fbfbfdaa602d95.zip
need to explicitly install the nginx plugin
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"],
],
}
}