blob: de20b6675248a1d80091b2d54c6a1a80e3aa4a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class site_postfix::satellite {
$root_mail_recipient = hiera ('contacts')
$mail = hiera ('mail')
$relayhost = $mail['smarthost']
class { '::postfix::satellite':
relayhost => $relayhost,
root_mail_recipient => $root_mail_recipient
}
}
|