diff options
author | varac <varacanero@zeromail.org> | 2013-10-10 18:15:56 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-10-10 18:15:56 +0200 |
commit | 2a291df14f20a3e3ac1eeebbaf50c79feb2012ed (patch) | |
tree | 0757d9d062a99486505f2b14cc6f68f54e96e4a5 | |
parent | b22a3524c99f9205c8078d5542718e3625e68244 (diff) |
contacts is now a top-level hiera variable
-rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index a043c277..08d57a24 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -3,10 +3,9 @@ class site_postfix::mx { $domain_hash = hiera ('domain') $domain = $domain_hash['full_suffix'] $host_domain = $domain_hash['full'] - $mx_hash = hiera('mx') $cert_name = hiera('name') - $root_mail_recipient = $mx_hash['contact'] + $root_mail_recipient = hiera ('contacts') $postfix_smtp_listen = 'all' include site_config::x509::cert |