diff options
author | Serdar Sutay <serdar@opscode.com> | 2014-11-19 10:57:44 -0800 |
---|---|---|
committer | Serdar Sutay <serdar@opscode.com> | 2014-11-19 10:57:44 -0800 |
commit | 9179b18eeb2e476480fd0a4a4a5f8b36f75e5982 (patch) | |
tree | ad12a191e850f46063e7ce20237496102882a3a4 /lib/chef | |
parent | 8d0aeb1716bda762cf6506d8a8f3e570cde600b2 (diff) | |
parent | 050d148a3697afd87958d93df6cd26b2539a393b (diff) | |
download | chef-9179b18eeb2e476480fd0a4a4a5f8b36f75e5982.tar.gz |
Merge pull request #2073 from opscode/ryan/group_post-mastertball/restore-050d148
Populate the actors when creating groups
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/chef_fs/data_handler/group_data_handler.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/chef/chef_fs/data_handler/group_data_handler.rb b/lib/chef/chef_fs/data_handler/group_data_handler.rb index 4d1b10f321..1a36c66eb8 100644 --- a/lib/chef/chef_fs/data_handler/group_data_handler.rb +++ b/lib/chef/chef_fs/data_handler/group_data_handler.rb @@ -36,6 +36,10 @@ class Chef result end + def normalize_for_post(group, entry) + normalize_for_put(group, entry) + end + def preserve_key?(key) return key == 'name' end |