diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-05-29 11:46:23 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-05-29 11:46:23 -0300 |
commit | 5dee6285291b293b34f9239e17bd84e499de0085 (patch) | |
tree | 332cf881b1dce6d927fe20d71a98a8b572830abf /manifests | |
parent | 6d846f6c3d7c3ed3bd6bb7fa7b2886af07021b60 (diff) | |
download | puppet-nodo-5dee6285291b293b34f9239e17bd84e499de0085.tar.gz puppet-nodo-5dee6285291b293b34f9239e17bd84e499de0085.tar.bz2 |
Mail can be disabled via nodo::subsystem::mail::delivery
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/mail.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/subsystem/mail.pp b/manifests/subsystem/mail.pp index c3eda4c..b688794 100644 --- a/manifests/subsystem/mail.pp +++ b/manifests/subsystem/mail.pp @@ -4,13 +4,13 @@ class nodo::subsystem::mail { $munin = hiera('nodo::host::use_munin', True) case $mail_delivery { - 'tunnel': { + 'tunnel': { $mail_hostname = hiera('nodo::subsystem::mail::hostname') tunnel::autossh::mail { "$mail_hostname": sshport => hiera('nodo::subsystem::mail::ssh_port'), } } - 'postfix': { } + 'postfix', 'disabled': { } '','exim',default: { include exim::tls |