mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Create temp file in directory where ssh key lives
This commit is contained in:
parent
b2e94e53fc
commit
544dc76704
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ def readkeys(filename):
|
|||
|
||||
def writekeys(module, filename, keys):
|
||||
|
||||
fd, tmp_path = tempfile.mkstemp()
|
||||
fd, tmp_path = tempfile.mkstemp('', 'tmp', os.path.dirname(filename))
|
||||
f = open(tmp_path,"w")
|
||||
try:
|
||||
f.writelines( (key + "\n" for key in keys) )
|
||||
|
|
Loading…
Reference in a new issue