diff options
author | Jordan Evans <jordane@osuosl.org> | 2015-07-02 12:42:19 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2015-10-24 17:56:58 -0700 |
commit | 44f9cd3842b6b6e0ac0a823f7ab311db91441a78 (patch) | |
tree | 334efd1a0d049e120c9ad2087ca4a487bcb5392d /lib/chef/provider | |
parent | 92e10007ace4269050aa12b184613617a5122cb7 (diff) | |
download | chef-44f9cd3842b6b6e0ac0a823f7ab311db91441a78.tar.gz |
add the word group to converge_by call for group provider
Diffstat (limited to 'lib/chef/provider')
-rw-r--r-- | lib/chef/provider/group.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/group.rb b/lib/chef/provider/group.rb index a802758dce..a1cf92058d 100644 --- a/lib/chef/provider/group.rb +++ b/lib/chef/provider/group.rb @@ -125,7 +125,7 @@ class Chef def action_create case @group_exists when false - converge_by("create #{@new_resource.group_name}") do + converge_by("create group #{@new_resource.group_name}") do create_group Chef::Log.info("#{@new_resource} created") end |