From: Silvio Rhatto Date: Mon, 21 Jan 2013 20:53:54 +0000 (-0200) Subject: Avoid duplicate assignment X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=d8476a4c4554b6b15499d946550cf1aad3586c37;p=puppet-mail.git Avoid duplicate assignment --- 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}" } }