puppet-certbot/manifests/init.pp

12 lines
132 B
ObjectPascal
Raw Normal View History

2020-12-02 13:19:14 +01:00
# install and configure certbot
class certbot(
String[1] $package,
) {
package {
$package:
ensure => present;
}
}