From 330f140c710d77e3097bbb6b5efc426cd345dbf2 Mon Sep 17 00:00:00 2001 From: Mark Cornick Date: Mon, 9 Sep 2013 23:17:10 -0400 Subject: [PATCH] [COOK-3530] Move node['postfix']['relayhost'] to node['postfix']['main']['relayhost'] Signed-off-by: Seth Vargo --- recipes/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/client.rb b/recipes/client.rb index 2c26c2d..8fffa75 100644 --- a/recipes/client.rb +++ b/recipes/client.rb @@ -37,6 +37,6 @@ else relayhost = results.map {|n| n['ipaddress']}.first end -node.set['postfix']['relayhost'] = "[#{relayhost}]" +node.set['postfix']['main']['relayhost'] = "[#{relayhost}]" include_recipe "postfix"