diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-14 15:12:28 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-14 15:12:28 -0300 |
commit | 3f2aad8d17bde2354ad6d222d85d7281c40391b5 (patch) | |
tree | c8f290a1d6609baf41e97017c4e10022c1fdbe9e /manifests/subsystem/mail.pp | |
parent | 11466421c5c5ebb56d345b8f100e22fcd4b539ce (diff) | |
download | puppet-nodo-3f2aad8d17bde2354ad6d222d85d7281c40391b5.tar.gz puppet-nodo-3f2aad8d17bde2354ad6d222d85d7281c40391b5.tar.bz2 |
Splitting nodo code into subsystems
Diffstat (limited to 'manifests/subsystem/mail.pp')
-rw-r--r-- | manifests/subsystem/mail.pp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/subsystem/mail.pp b/manifests/subsystem/mail.pp new file mode 100644 index 0000000..12c7e4b --- /dev/null +++ b/manifests/subsystem/mail.pp @@ -0,0 +1,14 @@ +class nodo::subsystem::mail { + # Email delivery configuration + $mail_delivery = hiera('nodo::subsystem::mail::delivery', 'exim') + case $mail_delivery { + 'tunnel': { + $mail_hostname = hiera('nodo::subsystem::mail::hostname') + tunnel::autossh::mail { "$mail_hostname": + sshport => hiera('nodo::subsystem::mail::ssh_port'), + } + } + 'postfix': { } + '','exim',default: { include exim::tls } + } +} |