feat: add mail::gateway role (#413)

- add a mail::gateway role, more to add later
- enables the build of hosts in this role immedately (config later)

Reviewed-on: #413
This commit is contained in:
Ben Vincent 2025-10-19 19:09:51 +11:00
parent e95a59b88a
commit e129d1cf7a

View File

@ -0,0 +1,10 @@
# 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
}
}