From 06ba66c1961785e660568420d6ca4e3166335e63 Mon Sep 17 00:00:00 2001 From: Gerhard Lazu Date: Tue, 26 Mar 2013 08:00:54 +0000 Subject: [PATCH] Keep the same naming convention everywhere They are defined as ssh_keys in the system_user resource --- recipes/apps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/apps.rb b/recipes/apps.rb index 460ac68..ff4a8f9 100644 --- a/recipes/apps.rb +++ b/recipes/apps.rb @@ -1,7 +1,7 @@ node[:apps].each do |app| users_with_deploy_privileges = node[:system_users].inject([]) { |result, (user, user_properties)| if user_properties.fetch(:groups) { [] }.include?("deploy") - result << user_properties[:keys] + result << user_properties[:ssh_keys] end result }.flatten