Edit /etc/shadow instead

Signed-off-by: Rick Elrod <rick@elrod.me>
pull/70897/head
Rick Elrod 4 years ago
parent ad9dcb001a
commit a43269d3a7

@ -2730,6 +2730,27 @@ class BusyBox(User):
- modify_user()
"""
# This can probably just move out to User, it might be useful in
# other strategies some day.
def _disable_password_in_shadow_or_fail(self, username):
try:
self.backup_shadow()
out_lines = []
with open(self.SHADOWFILE, 'r') as f:
for line in f.readlines():
components = line.split(':')
if components[0] == self.name:
components[1] = '*'
out_lines.append(':'.join(components))
else:
out_lines.append(line)
with open(self.SHADOWFILE, 'w') as f:
f.writelines(out_lines)
except Exception as e:
self.module.fail_json(
msg="Something went wrong when trying to modify %s: %s" %
(self.SHADOWFILE, to_native(e)))
def create_user(self):
cmd = [self.module.get_bin_path('adduser', True)]
@ -2782,12 +2803,7 @@ class BusyBox(User):
# https://github.com/ansible/ansible/issues/68676
# https://bugs.busybox.net/show_bug.cgi?id=10981
if self.password is None:
cmd = [self.module.get_bin_path('passwd', True)]
cmd += ['-u', self.name]
rc, out, err = self.execute_command(cmd)
if rc is not None and rc != 0:
self.module.fail_json(name=self.name, msg=err, rc=rc)
self._disable_password_in_shadow_or_fail(self.name)
else:
cmd = [self.module.get_bin_path('chpasswd', True)]
cmd.append('--encrypted')

Loading…
Cancel
Save