Class: Chef::Provider::User::Pw

Inherits:
Chef::Provider::User show all
Defined in:
lib/chef/provider/user/pw.rb

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider::User

#locked, #user_exists

Attributes inherited from Chef::Provider

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

Instance Method Summary collapse

Methods inherited from Chef::Provider::User

#action_create, #action_lock, #action_manage, #action_modify, #action_remove, #action_unlock, #compare_user, #convert_group_name, #define_resource_requirements, #initialize, #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, #check_resource_semantics!, #cleanup_after_converge, #converge_by, #converge_if_changed, #define_resource_requirements, #events, include_resource_dsl, include_resource_dsl_module, #initialize, #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, #register_deprecated_lwrp_class

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 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::User

Instance Method Details

#check_lockObject



52
53
54
55
56
57
58
59
60
# File 'lib/chef/provider/user/pw.rb', line 52

def check_lock
  case @current_resource.password
  when /^\*LOCKED\*/
    @locked = true
  else
    @locked = false
  end
  @locked
end

#create_userObject



32
33
34
35
36
37
# File 'lib/chef/provider/user/pw.rb', line 32

def create_user
  command = "pw useradd"
  command << set_options
  run_command(:command => command)
  modify_password
end

#load_current_resourceObject



27
28
29
30
# File 'lib/chef/provider/user/pw.rb', line 27

def load_current_resource
  super
  raise Chef::Exceptions::User, "Could not find binary /usr/sbin/pw for #{@new_resource}" unless ::File.exists?("/usr/sbin/pw")
end

#lock_userObject



62
63
64
# File 'lib/chef/provider/user/pw.rb', line 62

def lock_user
  run_command(:command => "pw lock #{@new_resource.username}")
end

#manage_userObject



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

def manage_user
  command = "pw usermod"
  command << set_options
  run_command(:command => command)
  modify_password
end

#modify_passwordObject



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/chef/provider/user/pw.rb', line 96

def modify_password
  if (not @new_resource.password.nil?) && (@current_resource.password != @new_resource.password)
    Chef::Log.debug("#{new_resource} updating password")
    command = "pw usermod #{@new_resource.username} -H 0"
    status = popen4(command, :waitlast => true) do |pid, stdin, stdout, stderr|
      stdin.puts "#{@new_resource.password}"
    end

    unless status.exitstatus == 0
      raise Chef::Exceptions::User, "pw failed - #{status.inspect}!"
    end
  else
    Chef::Log.debug("#{new_resource} no change needed to password")
  end
end

#remove_userObject



46
47
48
49
50
# File 'lib/chef/provider/user/pw.rb', line 46

def remove_user
  command = "pw userdel #{@new_resource.username}"
  command << " -r" if @new_resource.supports[:manage_home]
  run_command(:command => command)
end

#set_optionsObject



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/chef/provider/user/pw.rb', line 70

def set_options
  opts = " #{@new_resource.username}"

  field_list = {
    "comment" => "-c",
    "home" => "-d",
    "gid" => "-g",
    "uid" => "-u",
    "shell" => "-s",
  }
  field_list.sort { |a, b| a[0] <=> b[0] }.each do |field, option|
    field_symbol = field.to_sym
    if @current_resource.send(field_symbol) != @new_resource.send(field_symbol)
      if @new_resource.send(field_symbol)
        Chef::Log.debug("#{@new_resource} setting #{field} to #{@new_resource.send(field_symbol)}")
        opts << " #{option} '#{@new_resource.send(field_symbol)}'"
      end
    end
  end
  if @new_resource.supports[:manage_home]
    Chef::Log.debug("#{@new_resource} is managing the users home directory")
    opts << " -m"
  end
  opts
end

#unlock_userObject



66
67
68
# File 'lib/chef/provider/user/pw.rb', line 66

def unlock_user
  run_command(:command => "pw unlock #{@new_resource.username}")
end