From f8712ca211575bdaf2e373847484b97595d754a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 12 Jun 2023 17:44:32 +0200 Subject: Add apache authenticator. --- manifests/authenticator/apache.pp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 manifests/authenticator/apache.pp (limited to 'manifests/authenticator/apache.pp') 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]) + } +} -- cgit v1.2.3