]> gitweb.fluxo.info Git - puppet-mail.git/commitdiff
Avoid duplicate assignment
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 21 Jan 2013 20:53:54 +0000 (18:53 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 21 Jan 2013 20:53:54 +0000 (18:53 -0200)
manifests/system.pp

index a9767078b2a4ff6e767fb813734eb2fa96e15d8f..872f1706eb7b27ae072ff96bbaaa67e03c2d39a6 100644 (file)
@@ -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}" }
   }