summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-21 18:53:54 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-21 18:53:54 -0200
commitd8476a4c4554b6b15499d946550cf1aad3586c37 (patch)
tree9cea4b0be431d6bdb725acf957509a4dbc5cc234
parentb2a6fbf50cd54a7a769a64bb8dd51bd7ebf9d3d9 (diff)
downloadpuppet-mail-d8476a4c4554b6b15499d946550cf1aad3586c37.tar.gz
puppet-mail-d8476a4c4554b6b15499d946550cf1aad3586c37.tar.bz2
Avoid duplicate assignment
-rw-r--r--manifests/system.pp4
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}" }
}