Puppet Class: letsencrypt::plugin::nginx
- Defined in:
- manifests/plugin/nginx.pp
Summary
install and configure the Let's Encrypt nginx pluginOverview
5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/plugin/nginx.pp', line 5
class letsencrypt::plugin::nginx (
Boolean $manage_package = true,
String[1] $package_name = 'python3-certbot-nginx',
) {
if $manage_package {
package { $package_name:
ensure => installed,
}
}
}
|