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, #validate_member!, #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 included from Mixin::ShellOut

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

Methods inherited from Chef::Provider

#action_nothing, #check_resource_semantics!, #cleanup_after_converge, #converge_by, #converge_if_changed, #define_resource_requirements, #events, include_resource_dsl, include_resource_dsl_module, #initialize, #load_current_resource, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::Provides

#provided_as, #provides, #provides?

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 DeprecatedLWRPClass

#const_missing, #deprecated_constants, #register_deprecated_lwrp_class

Methods included from Mixin::LazyModuleInclude

#descendants, #include, #included

Methods included from Mixin::NotifyingBlock

#notifying_block, #subcontext_block

Methods included from DSL::DeclareResource

#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #with_run_context

Methods included from Mixin::PowershellOut

#powershell_out, #powershell_out!

Methods included from Mixin::WindowsArchitectureHelper

#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory

Methods included from DSL::PlatformIntrospection

#docker?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family

Constructor Details

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

Instance Method Details

#add_member(member) ⇒ Object



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

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

#create_groupObject



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

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

#manage_groupObject



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

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



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

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

#remove_member(member) ⇒ Object



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

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

#required_binariesObject



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

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

#set_members(members) ⇒ Object



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

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

#set_optionsObject



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

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 #{@new_resource.send(field)}")
        opts << " '#{option}=#{@new_resource.send(field)}'"
      end
    end
  end
  opts
end