diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-21 18:53:54 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-21 18:53:54 -0200 |
commit | d8476a4c4554b6b15499d946550cf1aad3586c37 (patch) | |
tree | 9cea4b0be431d6bdb725acf957509a4dbc5cc234 /manifests | |
parent | b2a6fbf50cd54a7a769a64bb8dd51bd7ebf9d3d9 (diff) | |
download | puppet-mail-d8476a4c4554b6b15499d946550cf1aad3586c37.tar.gz puppet-mail-d8476a4c4554b6b15499d946550cf1aad3586c37.tar.bz2 |
Avoid duplicate assignment
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/system.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index a976707..872f170 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -78,9 +78,9 @@ class mail::system { } } - $postfix_relay_domains = hiera('postfix_relay_domains', '') + $relay_domains = hiera('postfix_relay_domains', '') - case $postfix_relay_domains { + case $relay_domains { '': { $postfix_relay_domains = "${postfix_default_relay_domains}${sympa_relay_domains}${schleuder_relay_domains}${mlmmj_relay_domains}${firma_relay_domains}" } } |