11 lines
176 B
Puppet
11 lines
176 B
Puppet
# install and configure certbot
|
|
class certbot inherits certbot::params {
|
|
|
|
package {
|
|
'certbot':
|
|
ensure => present,
|
|
name => $certbot::params::package;
|
|
}
|
|
|
|
}
|