fix for authorized_key: skip chown and chmod if authorized_key_file is link
This commit is contained in:
parent
413fb87113
commit
6735ec6e9d
1 changed files with 6 additions and 2 deletions
|
@ -140,8 +140,12 @@ def keyfile(module, user, write=False, path=None, manage_dir=True):
|
|||
if module.selinux_enabled():
|
||||
module.set_default_selinux_context(keysfile, False)
|
||||
|
||||
os.chown(keysfile, uid, gid)
|
||||
os.chmod(keysfile, 0600)
|
||||
try:
|
||||
os.chown(keysfile, uid, gid)
|
||||
os.chmod(keysfile, 0600)
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
return keysfile
|
||||
|
||||
def readkeys(filename):
|
||||
|
|
Loading…
Reference in a new issue