# @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]) } }