just install certbot...

This commit is contained in:
Fredrik Eriksson 2020-12-02 13:19:14 +01:00
parent 4aeca2a02d
commit 4f740233f7
Signed by: feffe
GPG Key ID: 18524638BE25530A
2 changed files with 12 additions and 0 deletions

View File

@ -1 +1,2 @@
--- ---
certbot::package: py37-certbot

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;
}
}