Class: Chef::Provider::Group::Aix

Inherits:
Groupadd show all
Defined in:
lib/chef/provider/group/aix.rb

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider::Group

#change_desc, #group_exists

Attributes inherited from Chef::Provider

#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods inherited from Groupadd

#define_resource_requirements, #groupadd_options, #load_current_resource, #modify_group_members

Methods inherited from Chef::Provider::Group

#action_create, #action_manage, #action_modify, #action_remove, #compare_group, #define_resource_requirements, #has_current_group_member?, #initialize, #load_current_resource, #whyrun_supported?

Methods included from Mixin::Command

#chdir_or_tmpdir, #handle_command_failures, #output_of_command, #run_command, #run_command_and_return_stdout_stderr, #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, #cleanup_after_converge, #converge_by, #define_resource_requirements, #events, #initialize, #load_current_resource, #node, node_map, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!

Constructor Details

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

Instance Method Details

#add_member(member) ⇒ Object



56
57
58
# File 'lib/chef/provider/group/aix.rb', line 56

def add_member(member)
  shell_out!("chgrpmem -m + #{member} #{@new_resource.group_name}")
end

#create_groupObject



34
35
36
37
38
39
# File 'lib/chef/provider/group/aix.rb', line 34

def create_group
  command = "mkgroup"
  command << set_options << " #{@new_resource.group_name}"
  run_command(:command => command)
  modify_group_members
end

#manage_groupObject



41
42
43
44
45
46
47
48
49
50
# File 'lib/chef/provider/group/aix.rb', line 41

def manage_group
  command = "chgroup"
  options = set_options
  #Usage: chgroup [-R load_module] "attr=value" ... group
  if options.size > 0
    command << options << " #{@new_resource.group_name}"
    run_command(:command => command)
  end
  modify_group_members
end

#remove_groupObject



52
53
54
# File 'lib/chef/provider/group/aix.rb', line 52

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

#remove_member(member) ⇒ Object



65
66
67
# File 'lib/chef/provider/group/aix.rb', line 65

def remove_member(member)
  shell_out!("chgrpmem -m - #{member} #{@new_resource.group_name}")
end

#required_binariesObject



27
28
29
30
31
32
# File 'lib/chef/provider/group/aix.rb', line 27

def required_binaries
  [ "/usr/bin/mkgroup",
    "/usr/bin/chgroup",
    "/usr/bin/chgrpmem",
    "/usr/sbin/rmgroup" ]
end

#set_members(members) ⇒ Object



60
61
62
63
# File 'lib/chef/provider/group/aix.rb', line 60

def set_members(members)
  return if members.empty?
  shell_out!("chgrpmem -m = #{members.join(',')} #{@new_resource.group_name}")
end

#set_optionsObject



69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/chef/provider/group/aix.rb', line 69

def set_options
  opts = ""
  { :gid => "id" }.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)
        Chef::Log.debug("#{@new_resource} setting #{field.to_s} to #{@new_resource.send(field)}")
        opts << " '#{option}=#{@new_resource.send(field)}'"
      end
    end
  end
  opts
end