summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/satellite.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-12-17 12:58:22 -0500
committerMicah Anderson <micah@leap.se>2013-12-18 13:08:45 -0500
commit9531b13447ff204a00a138a137818054603fe1c9 (patch)
tree43e9e48603384ec4579c3537908c7ad0a59b063d /puppet/modules/site_postfix/manifests/satellite.pp
parent411b7ebb8bce00a81002d1abb9f7c488571ddb47 (diff)
add a smtp_tls class and include that on both mx servers and satellites
Change-Id: I779ea60e6d726d042203fa0756d73b4af079d728
Diffstat (limited to 'puppet/modules/site_postfix/manifests/satellite.pp')
-rw-r--r--puppet/modules/site_postfix/manifests/satellite.pp3
1 files changed, 3 insertions, 0 deletions
diff --git a/puppet/modules/site_postfix/manifests/satellite.pp b/puppet/modules/site_postfix/manifests/satellite.pp
index de20b667..7be51b22 100644
--- a/puppet/modules/site_postfix/manifests/satellite.pp
+++ b/puppet/modules/site_postfix/manifests/satellite.pp
@@ -3,9 +3,12 @@ class site_postfix::satellite {
$root_mail_recipient = hiera ('contacts')
$mail = hiera ('mail')
$relayhost = $mail['smarthost']
+ $cert_name = hiera('name')
class { '::postfix::satellite':
relayhost => $relayhost,
root_mail_recipient => $root_mail_recipient
}
+
+ include site_postfix::mx::smtp_tls
}