mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix up chain invocations of template
This commit is contained in:
parent
d55012e570
commit
a65b4fef97
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ class Runner(object):
|
||||||
xfered = self._transfer_str(conn, tmp, 'source', resultant)
|
xfered = self._transfer_str(conn, tmp, 'source', resultant)
|
||||||
|
|
||||||
# run the copy module, queue the file module
|
# run the copy module, queue the file module
|
||||||
self.module_args = "src=%s dest=%s" % (xfered, dest)
|
self.module_args = "%s src=%s dest=%s" % (self.module_args, xfered, dest)
|
||||||
return self._execute_module(conn, tmp, 'copy', self.module_args, inject=inject).daisychain('file')
|
return self._execute_module(conn, tmp, 'copy', self.module_args, inject=inject).daisychain('file')
|
||||||
|
|
||||||
# *****************************************************
|
# *****************************************************
|
||||||
|
|
Loading…
Reference in a new issue