just install certbot...

This commit is contained in:
2020-12-02 13:19:14 +01:00
parent 4aeca2a02d
commit 4f740233f7
2 changed files with 12 additions and 0 deletions

11
manifests/init.pp Normal file
View File

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