Do not reset permissions in checkmode

If using authorized_key on a directory with non standard permissions,
using checkmode will reset the permission silently.
pull/45845/head
Michael Scherer 6 years ago committed by Michael Scherer
parent 1b92e43dcb
commit 795b711394

@ -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…
Cancel
Save