summaryrefslogtreecommitdiff
path: root/lib/chef
diff options
context:
space:
mode:
authorThiago Oliveira <thiagoo@yahoo-inc.com>2014-10-17 14:28:52 -0700
committerThiago Oliveira <thiagoo@yahoo-inc.com>2014-10-17 14:28:52 -0700
commit8be7f51256ca5117d4fcb4fb1fab6233c84e0ddf (patch)
tree2cab112f342df7f4c08aa1725bdfee29f57b79e2 /lib/chef
parent901e8eff95c953b91f597e4d83932d5b8803d31a (diff)
downloadchef-8be7f51256ca5117d4fcb4fb1fab6233c84e0ddf.tar.gz
use group_name when checking if the group exists on mac osx with dscl
Diffstat (limited to 'lib/chef')
-rw-r--r--lib/chef/provider/group/dscl.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider/group/dscl.rb b/lib/chef/provider/group/dscl.rb
index 04ca9bc929..e06c090f50 100644
--- a/lib/chef/provider/group/dscl.rb
+++ b/lib/chef/provider/group/dscl.rb
@@ -41,10 +41,10 @@ class Chef
def load_current_resource
@current_resource = Chef::Resource::Group.new(@new_resource.name)
- @current_resource.group_name(@new_resource.name)
+ @current_resource.group_name(@new_resource.group_name)
group_info = nil
begin
- group_info = safe_dscl("read /Groups/#{@new_resource.name}")
+ group_info = safe_dscl("read /Groups/#{@new_resource.group_name}")
rescue Chef::Exceptions::Group
@group_exists = false
Chef::Log.debug("#{@new_resource} group does not exist")