Class: Chef::Provider::Group::Groupadd
- Inherits:
-
Chef::Provider::Group
- Object
- Chef::Provider
- Chef::Provider::Group
- Chef::Provider::Group::Groupadd
- Defined in:
- lib/chef/provider/group/groupadd.rb
Instance Attribute Summary
Attributes inherited from Chef::Provider::Group
Attributes inherited from Chef::Provider
#current_resource, #new_resource, #run_context
Instance Method Summary collapse
-
#create_group ⇒ Object
Create the group.
- #load_current_resource ⇒ Object
-
#manage_group ⇒ Object
Manage the group when it already exists.
- #modify_group_members ⇒ Object
-
#remove_group ⇒ Object
Remove the group.
-
#set_options ⇒ Object
Little bit of magic as per Adam’s useradd provider to pull the assign the command line flags.
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
Methods included from Mixin::Command::Unix
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
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_group ⇒ Object
Create the group
35 36 37 38 39 40 |
# File 'lib/chef/provider/group/groupadd.rb', line 35 def create_group command = "groupadd" command << run_command(:command => command) modify_group_members end |
#load_current_resource ⇒ Object
24 25 26 27 28 29 30 31 32 |
# File 'lib/chef/provider/group/groupadd.rb', line 24 def load_current_resource super [ "/usr/sbin/groupadd", "/usr/sbin/groupmod", "/usr/sbin/groupdel" ].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_group ⇒ Object
Manage the group when it already exists
43 44 45 46 47 48 |
# File 'lib/chef/provider/group/groupadd.rb', line 43 def manage_group command = "groupmod" command << run_command(:command => command) modify_group_members end |
#modify_group_members ⇒ Object
55 56 57 |
# File 'lib/chef/provider/group/groupadd.rb', line 55 def modify_group_members raise Chef::Exceptions::Group, "you must override modify_group_members in #{self.to_s}" end |
#remove_group ⇒ Object
Remove the group
51 52 53 |
# File 'lib/chef/provider/group/groupadd.rb', line 51 def remove_group run_command(:command => "groupdel #{@new_resource.group_name}") end |
#set_options ⇒ Object
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
62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/chef/provider/group/groupadd.rb', line 62 def 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) Chef::Log.debug("#{@new_resource}: setting #{field.to_s} to #{@new_resource.send(field)}") opts << " #{option} '#{@new_resource.send(field)}'" end end end opts << " #{@new_resource.group_name}" end |