Class: Chef::Provider::User

Inherits:
Chef::Provider show all
Includes:
Mixin::Command
Defined in:
lib/chef/provider/user.rb,
lib/chef/provider/user/pw.rb,
lib/chef/provider/user/aix.rb,
lib/chef/provider/user/dscl.rb,
lib/chef/provider/user/solaris.rb,
lib/chef/provider/user/useradd.rb,
lib/chef/provider/user/windows.rb

Direct Known Subclasses

Dscl, Pw, Useradd, Windows

Defined Under Namespace

Classes: Aix, Dscl, Pw, Solaris, Useradd, Windows

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary collapse

Attributes inherited from Chef::Provider

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

Instance Method Summary collapse

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, #events, include_resource_dsl, include_resource_dsl_module, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?

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

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

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

#initialize(new_resource, run_context) ⇒ User

Returns a new instance of User.



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

def initialize(new_resource, run_context)
  super
  @user_exists = true
  @locked = nil
  @shadow_lib_ok = true
  @group_name_resolved = true
end

Instance Attribute Details

#lockedObject

Returns the value of attribute locked.



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

def locked
  @locked
end

#user_existsObject

Returns the value of attribute user_exists.



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

def user_exists
  @user_exists
end

Instance Method Details

#action_createObject



127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/chef/provider/user.rb', line 127

def action_create
  if !@user_exists
    converge_by("create user #{@new_resource.username}") do
      create_user
      Chef::Log.info("#{@new_resource} created")
    end
  elsif compare_user
    converge_by("alter user #{@new_resource.username}") do
      manage_user
      Chef::Log.info("#{@new_resource} altered")
    end
  end
end

#action_lockObject



176
177
178
179
180
181
182
183
184
185
# File 'lib/chef/provider/user.rb', line 176

def action_lock
  if check_lock() == false
    converge_by("lock the user #{@new_resource.username}") do
      lock_user
      Chef::Log.info("#{@new_resource} locked")
    end
  else
    Chef::Log.debug("#{@new_resource} already locked - nothing to do")
  end
end

#action_manageObject



154
155
156
157
158
159
160
161
# File 'lib/chef/provider/user.rb', line 154

def action_manage
  if @user_exists && compare_user
    converge_by("manage user #{@new_resource.username}") do
      manage_user
      Chef::Log.info("#{@new_resource} managed")
    end
  end
end

#action_modifyObject



167
168
169
170
171
172
173
174
# File 'lib/chef/provider/user.rb', line 167

def action_modify
  if compare_user
    converge_by("modify user #{@new_resource.username}") do
      manage_user
      Chef::Log.info("#{@new_resource} modified")
    end
  end
end

#action_removeObject



141
142
143
144
145
146
147
148
# File 'lib/chef/provider/user.rb', line 141

def action_remove
  if @user_exists
    converge_by("remove user #{@new_resource.username}") do
      remove_user
      Chef::Log.info("#{@new_resource} removed")
    end
  end
end

#action_unlockObject



195
196
197
198
199
200
201
202
203
204
# File 'lib/chef/provider/user.rb', line 195

def action_unlock
  if check_lock() == true
    converge_by("unlock user #{@new_resource.username}") do
      unlock_user
      Chef::Log.info("#{@new_resource} unlocked")
    end
  else
    Chef::Log.debug("#{@new_resource} already unlocked - nothing to do")
  end
end

#check_lockObject

Raises:

  • (NotImplementedError)


187
188
189
# File 'lib/chef/provider/user.rb', line 187

def check_lock
  raise NotImplementedError
end

#compare_userObject

Check to see if the user needs any changes

Returns

<true>

If a change is required

<false>

If the users are identical



115
116
117
118
119
120
121
122
123
124
125
# File 'lib/chef/provider/user.rb', line 115

def compare_user
  changed = [ :comment, :home, :shell, :password ].select do |user_attrib|
    !@new_resource.send(user_attrib).nil? && @new_resource.send(user_attrib) != @current_resource.send(user_attrib)
  end

  changed += [ :uid, :gid ].select do |user_attrib|
    !@new_resource.send(user_attrib).nil? && @new_resource.send(user_attrib).to_s != @current_resource.send(user_attrib).to_s
  end

  changed.any?
end

#convert_group_nameObject



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

def convert_group_name
  if @new_resource.gid.is_a? String
    @new_resource.gid(Etc.getgrnam(@new_resource.gid).gid)
  end
rescue ArgumentError => e
  @group_name_resolved = false
end

#define_resource_requirementsObject



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/chef/provider/user.rb', line 91

def define_resource_requirements
  requirements.assert(:create, :modify, :manage, :lock, :unlock) do |a|
    a.assertion { @group_name_resolved }
    a.failure_message Chef::Exceptions::User, "Couldn't lookup integer GID for group name #{@new_resource.gid}"
    a.whyrun "group name #{@new_resource.gid} does not exist.  This will cause group assignment to fail.  Assuming this group will have been created previously."
  end
  requirements.assert(:all_actions) do |a|
    a.assertion { @shadow_lib_ok }
    a.failure_message Chef::Exceptions::MissingLibrary, "You must have ruby-shadow installed for password support!"
    a.whyrun "ruby-shadow is not installed. Attempts to set user password will cause failure.  Assuming that this gem will have been previously installed." +
      "Note that user update converge may report false-positive on the basis of mismatched password. "
  end
  requirements.assert(:modify, :lock, :unlock) do |a|
    a.assertion { @user_exists }
    a.failure_message(Chef::Exceptions::User, "Cannot modify user #{@new_resource.username} - does not exist!")
    a.whyrun("Assuming user #{@new_resource.username} would have been created")
  end
end

#load_current_resourceObject



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/chef/provider/user.rb', line 50

def load_current_resource
  @current_resource = Chef::Resource::User.new(@new_resource.name)
  @current_resource.username(@new_resource.username)

  begin
     = Etc.getpwnam(@new_resource.username)
  rescue ArgumentError => e
    @user_exists = false
    Chef::Log.debug("#{@new_resource} user does not exist")
     = nil
  end

  if 
    @current_resource.uid(.uid)
    @current_resource.gid(.gid)
    @current_resource.home(.dir)
    @current_resource.shell(.shell)
    @current_resource.password(.passwd)

    if @new_resource.comment
      .gecos.force_encoding(@new_resource.comment.encoding)
    end
    @current_resource.comment(.gecos)

    if @new_resource.password && @current_resource.password == "x"
      begin
        require "shadow"
      rescue LoadError
        @shadow_lib_ok = false
      else
        shadow_info = Shadow::Passwd.getspnam(@new_resource.username)
        @current_resource.password(shadow_info.sp_pwdp)
      end
    end

    convert_group_name if @new_resource.gid
  end

  @current_resource
end

#lock_userObject

Raises:

  • (NotImplementedError)


191
192
193
# File 'lib/chef/provider/user.rb', line 191

def lock_user
  raise NotImplementedError
end

#manage_userObject

Raises:

  • (NotImplementedError)


163
164
165
# File 'lib/chef/provider/user.rb', line 163

def manage_user
  raise NotImplementedError
end

#remove_userObject

Raises:

  • (NotImplementedError)


150
151
152
# File 'lib/chef/provider/user.rb', line 150

def remove_user
  raise NotImplementedError
end

#unlock_userObject

Raises:

  • (NotImplementedError)


206
207
208
# File 'lib/chef/provider/user.rb', line 206

def unlock_user
  raise NotImplementedError
end

#whyrun_supported?Boolean

Returns:

  • (Boolean)


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

def whyrun_supported?
  true
end