12 lines
132 B
ObjectPascal
12 lines
132 B
ObjectPascal
|
# install and configure certbot
|
||
|
class certbot(
|
||
|
String[1] $package,
|
||
|
) {
|
||
|
|
||
|
package {
|
||
|
$package:
|
||
|
ensure => present;
|
||
|
}
|
||
|
|
||
|
}
|