Method: Chef::Provider::Group::Pw#create_group

Defined in:
lib/chef/provider/group/pw.rb

#create_groupObject

Create the group



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

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