avoid chmod in check mode

This commit is contained in:
Brian Coca 2016-02-09 21:48:01 -05:00
parent e6460906fd
commit 3d4b5d165c

View file

@ -609,7 +609,7 @@ class User(object):
cmd.append('') cmd.append('')
(rc, out, err) = self.execute_command(cmd) (rc, out, err) = self.execute_command(cmd)
if rc == 0: if rc == 0 and not self.module.check_mode:
# If the keys were successfully created, we should be able # If the keys were successfully created, we should be able
# to tweak ownership. # to tweak ownership.
os.chown(ssh_key_file, info[2], info[3]) os.chown(ssh_key_file, info[2], info[3])