puppet-prod/site/roles/manifests/infra/mail/gateway.pp
Ben Vincent 9610063d75
All checks were successful
Build / precommit (pull_request) Successful in 5m12s
feat: add mail::gateway role
- add a mail::gateway role, more to add later
- enables the build of hosts in this role immedately (config later)
2025-10-19 19:00:38 +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
}
}