- moved certbot into its own module - added fact to list available certificates - created systemd timer to rsync data to $data_dir/pub - ensure the $data_dir/pub exists - manage selinux for nginx
11 lines
238 B
Puppet
11 lines
238 B
Puppet
# a role to deploy a certbot server
|
|
class roles::infra::pki::certbot {
|
|
if $facts['firstrun'] {
|
|
include profiles::defaults
|
|
include profiles::firstrun::init
|
|
}else{
|
|
include profiles::defaults
|
|
include profiles::base
|
|
}
|
|
}
|