Merge pull request #2954 from mattclay/user-check-mode-aix

Make modify_user_usermod honor check mode on AIX.
This commit is contained in:
James Cammarata 2016-02-09 08:04:55 -05:00
commit b175b11a63

View file

@ -1881,13 +1881,15 @@ class AIX(User):
if len(cmd) == 1:
(rc, out, err) = (None, '', '')
elif self.module.check_mode:
return (True, '', '')
return (0, '', '')
else:
cmd.append(self.name)
(rc, out, err) = self.execute_command(cmd)
# set password with chpasswd
if self.update_password == 'always' and self.password is not None and info[1] != self.password:
if self.module.check_mode:
return (0, '', '')
cmd = []
cmd.append(self.module.get_bin_path('chpasswd', True))
cmd.append('-e')