- 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
10 lines
233 B
Puppet
10 lines
233 B
Puppet
# certbot::haproxy
|
|
class certbot::haproxy {
|
|
# export haproxy balancemember
|
|
profiles::haproxy::balancemember { "${facts['networking']['fqdn']}_8888":
|
|
service => 'be_letsencrypt',
|
|
ports => [8888],
|
|
options => []
|
|
}
|
|
}
|