From 682fe0c10b0faf24003433359791b09a0c565ca8 Mon Sep 17 00:00:00 2001 From: jtimberman Date: Fri, 14 Sep 2012 13:14:26 -0600 Subject: [PATCH] use node[] instead of implied for ohai attributes --- attributes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attributes/default.rb b/attributes/default.rb index 50cb131..96d2b57 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -16,8 +16,8 @@ # limitations under the License. default['postfix']['mail_type'] = "client" -default['postfix']['myhostname'] = fqdn -default['postfix']['mydomain'] = domain +default['postfix']['myhostname'] = node['fqdn'] +default['postfix']['mydomain'] = node['domain'] default['postfix']['myorigin'] = "$myhostname" default['postfix']['relayhost'] = "" default['postfix']['mail_relay_networks'] = "127.0.0.0/8"