mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9936 from sysadmin75/9415_hostname_as_dir
Fixes #9415 - fetch: should use hostname instead of ip for directory name
This commit is contained in:
commit
6b64fe8bdd
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