puppet-certbot/manifests/init.pp

12 lines
132 B
Puppet

# install and configure certbot
class certbot(
String[1] $package,
) {
package {
$package:
ensure => present;
}
}