summaryrefslogtreecommitdiffstats
path: root/modules/certbot
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-09 01:02:24 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-09 01:02:24 -0400
commitceb3dd07f0192ac06b8e62758e782ce3693905ab (patch)
tree2242420592b37850f43c7736c6e818eadf691558 /modules/certbot
parent8caa7b4cae5f66e15715ae470170dc4b73e2347e (diff)
downloadpuppet-tozt-ceb3dd07f0192ac06b8e62758e782ce3693905ab.tar.gz
puppet-tozt-ceb3dd07f0192ac06b8e62758e782ce3693905ab.zip
split up "other_packages"
Diffstat (limited to 'modules/certbot')
-rw-r--r--modules/certbot/manifests/init.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/certbot/manifests/init.pp b/modules/certbot/manifests/init.pp
index 9c733f3..5ace225 100644
--- a/modules/certbot/manifests/init.pp
+++ b/modules/certbot/manifests/init.pp
@@ -1,4 +1,6 @@
class certbot {
+ include cron
+
package { 'certbot':
ensure => installed;
}
@@ -9,7 +11,7 @@ class certbot {
mode => '0755',
require => [
Package['certbot'],
- Package['cronie'],
+ Class['cron'],
];
'/etc/letsencrypt/renewal-hooks':
ensure => directory,