mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes #9415 - fetch: should use hostname instead of ip for directory name
This commit is contained in:
parent
1698b17b14
commit
aff20d911c
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class ActionModule(object):
|
|||
dest = utils.path_dwim(self.runner.basedir, dest)
|
||||
else:
|
||||
# files are saved in dest dir, with a subdir for each host, then the filename
|
||||
dest = "%s/%s/%s" % (utils.path_dwim(self.runner.basedir, dest), conn.host, source_local)
|
||||
dest = "%s/%s/%s" % (utils.path_dwim(self.runner.basedir, dest), inject['inventory_hostname'], source_local)
|
||||
|
||||
dest = dest.replace("//","/")
|
||||
|
||||
|
|
Loading…
Reference in a new issue