puppet-prod/site/roles/manifests/infra/auth/openldap.pp
Ben Vincent e6f243ef60 feat: add openldap role
- add basic openldap role
- manage certificates for openldap
2024-06-30 13:06:44 +10:00

11 lines
242 B
Puppet

# a role to deploy an openldap master
class roles::infra::auth::openldap {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
}
}