Puppet Class: postfix::nullmailer
- Defined in:
- manifests/nullmailer.pp
Overview
postfix use case for nullmailer
2 3 4 5 6 7 8 9 |
# File 'manifests/nullmailer.pp', line 2
class postfix::nullmailer (
$relayhost,
) {
class { 'postfix': }
postfix::maincf::param { 'relayhost':
value => $relayhost,
}
}
|