summaryrefslogtreecommitdiffstats
path: root/modules/certbot/manifests/init.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-11-06 02:49:50 -0500
committerJesse Luehrs <doy@tozt.net>2017-11-06 02:50:41 -0500
commitd89b535482b54490b19579b1e4916322d28329a4 (patch)
tree6c13c37186e4170414fc9e09c42adbd43aeaa77c /modules/certbot/manifests/init.pp
parent280348be23c634cc83a037a49102b71479264525 (diff)
downloadpuppet-tozt-d89b535482b54490b19579b1e4916322d28329a4.tar.gz
puppet-tozt-d89b535482b54490b19579b1e4916322d28329a4.zip
add some cron scripts
Diffstat (limited to 'modules/certbot/manifests/init.pp')
-rw-r--r--modules/certbot/manifests/init.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/certbot/manifests/init.pp b/modules/certbot/manifests/init.pp
index e28b387..f89c59a 100644
--- a/modules/certbot/manifests/init.pp
+++ b/modules/certbot/manifests/init.pp
@@ -2,4 +2,10 @@ class certbot {
package { 'certbot':
ensure => installed;
}
+
+ file { '/etc/cron.daily/certbot':
+ source => 'puppet:///modules/certbot/certbot',
+ mode => '0755',
+ require => Package['certbot'];
+ }
}