1
0
Fork 0
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:
sysadmin75 2015-01-04 15:57:48 -05:00
parent 1698b17b14
commit aff20d911c

View file

@ -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("//","/")