mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixup modularized template module
This commit is contained in:
parent
633e513a65
commit
8a09e1281b
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ class ActionModule(object):
|
||||||
xfered = self.runner._transfer_str(conn, tmp, 'source', resultant)
|
xfered = self.runner._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 = "%s src=%s dest=%s" % (self.runner.module_args, xfered, dest)
|
self.runner.module_args = "%s src=%s dest=%s" % (self.runner.module_args, xfered, dest)
|
||||||
return self._runner.execute_module(conn, tmp, 'copy', self.runner.module_args, inject=inject).daisychain('file')
|
return self.runner._execute_module(conn, tmp, 'copy', self.runner.module_args, inject=inject).daisychain('file')
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue