puppet-prod/site/roles/manifests/infra/mail/gateway.pp
Ben Vincent 9836857df2 refactor: move postfix gateway config to hiera for deep merging
- remove profiles::postfix::gateway wrapper class entirely
- move all postfix configurations to hieradata/roles/infra/mail/gateway.yaml
- add deep merge lookup options for postfix::configs, postfix::maps, and postfix::virtuals
- use hiera_include to include postfix module directly
2025-11-01 15:56:16 +11:00

11 lines
257 B
Puppet

# a role to deploy a dmz mx gateway for mail services
class roles::infra::mail::gateway {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
}
}