puppet-certbot/manifests/init.pp

11 lines
176 B
ObjectPascal
Raw Normal View History

2020-12-02 13:19:14 +01:00
# install and configure certbot
2020-12-02 13:54:33 +01:00
class certbot inherits certbot::params {
2020-12-02 13:19:14 +01:00
package {
2020-12-02 13:54:33 +01:00
'certbot':
ensure => present,
name => $certbot::params::package;
2020-12-02 13:19:14 +01:00
}
}