From aefa11df95e3dae76c8d845333fbfbfdaa602d95 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 10 Oct 2018 04:22:21 -0400 Subject: need to explicitly install the nginx plugin --- modules/certbot/manifests/init.pp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'modules/certbot') 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"], ], } } -- cgit v1.2.3-54-g00ecf