diff options
author | varac <varacanero@zeromail.org> | 2015-09-14 09:49:57 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-09-14 09:49:57 +0200 |
commit | 9a646678014424e560dff489dd9fdb7ee5283efc (patch) | |
tree | 1f7aaac6057360b0f7dbc4372e294f6035c53751 /puppet | |
parent | 12f94bca6b7b33b2a83883df9434adb6f290e757 (diff) | |
parent | 0e13876bd54009bf81e7cab2abcca392ca06e32d (diff) |
Merge remote-tracking branch 'micah/hiera_defaults_7443' into develop
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index 14c8634e..ed70e80e 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -7,8 +7,8 @@ class site_postfix::mx { $domain = $domain_hash['full_suffix'] $host_domain = $domain_hash['full'] $cert_name = hiera('name') - $mynetworks = join(hiera('mynetworks'), ' ') - $rbls = suffix(prefix(hiera('rbls'), 'reject_rbl_client '), ',') + $mynetworks = join(hiera('mynetworks', ''), ' ') + $rbls = suffix(prefix(hiera('rbls', []), 'reject_rbl_client '), ',') $root_mail_recipient = hiera('contacts') $postfix_smtp_listen = 'all' |