Class: Chef::Provider::Group::Groupadd

Inherits:
Chef::Provider::Group show all
Defined in:
lib/chef/provider/group/groupadd.rb

Direct Known Subclasses

Gpasswd, Suse, Usermod

Instance Attribute Summary

Attributes inherited from Chef::Provider::Group

#group_exists

Attributes inherited from Chef::Provider

#current_resource, #new_resource, #run_context

Instance Method Summary collapse

Methods inherited from Chef::Provider::Group

#action_create, #action_manage, #action_modify, #action_remove, #compare_group, #initialize

Methods included from Mixin::Command

#chdir_or_tmpdir, #handle_command_failures, #not_if, #only_if, #output_of_command, #run_command, #run_command_with_systems_locale

Methods included from Mixin::Command::Windows

#popen4

Methods included from Mixin::Command::Unix

#popen4

Methods inherited from Chef::Provider

#action_nothing, build_from_file, #cookbook_name, #initialize, #node, #resource_collection

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Methods included from Mixin::RecipeDefinitionDSLCore

#method_missing

Methods included from Mixin::Language

#data_bag, #data_bag_item, #platform?, #search, #value_for_platform

Constructor Details

This class inherits a constructor from Chef::Provider::Group

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Chef::Mixin::RecipeDefinitionDSLCore

Instance Method Details

#create_groupObject

Create the group



38
39
40
41
42
43
# File 'lib/chef/provider/group/groupadd.rb', line 38

def create_group
  command = "groupadd"
  command << set_options
  run_command(:command => command)
  modify_group_members    
end

#load_current_resourceObject



30
31
32
33
34
35
# File 'lib/chef/provider/group/groupadd.rb', line 30

def load_current_resource
  super
  required_binaries.each do |required_binary|
    raise Chef::Exceptions::Group, "Could not find binary #{required_binary} for #{@new_resource}" unless ::File.exists?(required_binary)
  end
end

#manage_groupObject

Manage the group when it already exists



46
47
48
49
50
51
# File 'lib/chef/provider/group/groupadd.rb', line 46

def manage_group
  command = "groupmod"
  command << set_options
  run_command(:command => command)
  modify_group_members
end

#modify_group_membersObject



58
59
60
# File 'lib/chef/provider/group/groupadd.rb', line 58

def modify_group_members
  raise Chef::Exceptions::Group, "you must override modify_group_members in #{self.to_s}"
end

#remove_groupObject

Remove the group



54
55
56
# File 'lib/chef/provider/group/groupadd.rb', line 54

def remove_group
  run_command(:command => "groupdel #{@new_resource.group_name}")
end

#required_binariesObject



24
25
26
27
28
# File 'lib/chef/provider/group/groupadd.rb', line 24

def required_binaries
  [ "/usr/sbin/groupadd",
    "/usr/sbin/groupmod",
    "/usr/sbin/groupdel" ]
end

#set_optionsObject

Little bit of magic as per Adam’s useradd provider to pull the assign the command line flags

Returns

<string>

A string containing the option and then the quoted value



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/chef/provider/group/groupadd.rb', line 65

def set_options
  opts = ""
  { :gid => "-g" }.sort { |a,b| a[0] <=> b[0] }.each do |field, option|
    if @current_resource.send(field) != @new_resource.send(field)
      if @new_resource.send(field)
        opts << " #{option} '#{@new_resource.send(field)}'"
        Chef::Log.debug("#{@new_resource} set #{field.to_s} to #{@new_resource.send(field)}")
      end
    end
  end
  opts << " #{@new_resource.group_name}"
end