mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Create the .ssh dir if it does not already exist.
This commit is contained in:
@@ -128,7 +128,10 @@ def keyfile(module, user, write=False, path=None, manage_dir=True):
|
|||||||
os.chown(sshdir, uid, gid)
|
os.chown(sshdir, uid, gid)
|
||||||
os.chmod(sshdir, 0700)
|
os.chmod(sshdir, 0700)
|
||||||
|
|
||||||
if not os.path.exists( keysfile):
|
if not os.path.exists(keysfile):
|
||||||
|
basedir = os.path.dirname(keysfile)
|
||||||
|
if not os.path.exists(basedir):
|
||||||
|
os.makedirs(basedir)
|
||||||
try:
|
try:
|
||||||
f = open(keysfile, "w") #touches file so we can set ownership and perms
|
f = open(keysfile, "w") #touches file so we can set ownership and perms
|
||||||
finally:
|
finally:
|
||||||
|
|||||||
Reference in New Issue
Block a user