mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 22:30:22 -07:00
Make modify_user_usermod honor check mode on AIX.
This commit is contained in:
parent
c690b318da
commit
642746d0a3
1 changed files with 3 additions and 1 deletions
|
@ -1880,13 +1880,15 @@ class AIX(User):
|
||||||
if len(cmd) == 1:
|
if len(cmd) == 1:
|
||||||
(rc, out, err) = (None, '', '')
|
(rc, out, err) = (None, '', '')
|
||||||
elif self.module.check_mode:
|
elif self.module.check_mode:
|
||||||
return (True, '', '')
|
return (0, '', '')
|
||||||
else:
|
else:
|
||||||
cmd.append(self.name)
|
cmd.append(self.name)
|
||||||
(rc, out, err) = self.execute_command(cmd)
|
(rc, out, err) = self.execute_command(cmd)
|
||||||
|
|
||||||
# set password with chpasswd
|
# set password with chpasswd
|
||||||
if self.update_password == 'always' and self.password is not None and info[1] != self.password:
|
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 = []
|
||||||
cmd.append(self.module.get_bin_path('chpasswd', True))
|
cmd.append(self.module.get_bin_path('chpasswd', True))
|
||||||
cmd.append('-e')
|
cmd.append('-e')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue