aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/authenticator/apache.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/authenticator/apache.pp b/manifests/authenticator/apache.pp
new file mode 100644
index 0000000..9c9ae46
--- /dev/null
+++ b/manifests/authenticator/apache.pp
@@ -0,0 +1,12 @@
+# @param certbot_plugin_package
+# Name of the package providing the apache authenticator
+# @param manage_package
+# Should the package be managed by us
+class letsencrypt::authenticator::apache (
+ String $certbot_plugin_package,
+ Boolean $manage_package = true,
+) {
+ if $manage_package {
+ ensure_packages([$certbot_plugin_package])
+ }
+}