Do not reset permissions in checkmode
If using authorized_key on a directory with non standard permissions, using checkmode will reset the permission silently.
This commit is contained in:
parent
1b92e43dcb
commit
795b711394
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ def keyfile(module, user, write=False, path=None, manage_dir=True, follow=False)
|
|||
if follow:
|
||||
keysfile = os.path.realpath(keysfile)
|
||||
|
||||
if not write:
|
||||
if not write or module.check_mode:
|
||||
return keysfile
|
||||
|
||||
uid = user_entry.pw_uid
|
||||
|
|
Loading…
Reference in a new issue