aboutsummaryrefslogtreecommitdiff
path: root/manifests/authenticator/apache.pp
blob: 9c9ae46b7eaefb5bf9e59051e41b7e3b164fcb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
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])
  }
}