aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
-rw-r--r--manifests/renew/periodic.pp7
-rw-r--r--manifests/renew/periodic/setup.pp5
3 files changed, 15 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index d6fb5f6..9ac1b0a 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -12,6 +12,8 @@
# Default configuration values to pass to certbot. $server and
# $email is added here if not explicitly set. It's later merged with
# a specific instance for each certificate.
+# @param config_dir
+# Storage location form letsencrypt files.
class letsencrypt (
String $email,
Letsencrypt::Renewal_provider $renewal_provider, # hiera
@@ -19,6 +21,7 @@ class letsencrypt (
Boolean $manage_package = true,
String $server = 'https://acme-v02.api.letsencrypt.org/directory',
Hash[String, Any] $config = {},
+ String $config_dir = '/etc/letsencrypt'
) {
# if $default_cert {
# letsencrypt::cert { $default_cert_name:
@@ -30,7 +33,6 @@ class letsencrypt (
# not accept them in other places. This might prove wrong (BSD?), in
# that case: make them parameters again, and resolve the few remaining
# instances where they are hard coded.
- $config_dir = '/etc/letsencrypt'
$cert_dir = "${config_dir}/live"
# Used by letsencrypt::cert
diff --git a/manifests/renew/periodic.pp b/manifests/renew/periodic.pp
new file mode 100644
index 0000000..ec32fae
--- /dev/null
+++ b/manifests/renew/periodic.pp
@@ -0,0 +1,7 @@
+# @api private
+class letsencrypt::renew::periodic (
+) {
+ periodic { 'weekly_certbot_enable':
+ value => 'YES',
+ }
+}
diff --git a/manifests/renew/periodic/setup.pp b/manifests/renew/periodic/setup.pp
new file mode 100644
index 0000000..75bb5e8
--- /dev/null
+++ b/manifests/renew/periodic/setup.pp
@@ -0,0 +1,5 @@
+# @summary Handles renewal of certificates through FreeBSD's periodic system
+# @api private
+class letsencrypt::renew::periodic::setup (
+) {
+}