diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-21 17:23:19 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-21 17:23:19 -0200 |
commit | 6a7a8485a403b67abf6e3e8c61e496b139b88adf (patch) | |
tree | 7ae7a566d6a1d8793655c3339c7c161678b55466 /manifests/nodo.pp | |
parent | ccba301053aaed7a6c505fbbff53091f816d9928 (diff) | |
download | puppet-nodo-6a7a8485a403b67abf6e3e8c61e496b139b88adf.tar.gz puppet-nodo-6a7a8485a403b67abf6e3e8c61e496b139b88adf.tar.bz2 |
Changing mail configuration, including hiera usage
Diffstat (limited to 'manifests/nodo.pp')
-rw-r--r-- | manifests/nodo.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/nodo.pp b/manifests/nodo.pp index 0ab3836..0fb8ef9 100644 --- a/manifests/nodo.pp +++ b/manifests/nodo.pp @@ -27,10 +27,10 @@ class nodo { $ntp_servers = [ 'a.ntp.br', 'b.ntp.br', 'c.ntp.br' ] # Email delivery configuration - case $mail_delivery { + case hiera('mail_delivery', 'exim') { 'tunnel': { - tunnel::mail { "$mail_hostname": - sshport => "$mail_ssh_port", + tunnel::mail { hiera('mail_hostname'): + sshport => hiera('mail_ssh_port'), } } 'postfix': { } |