Commit 8a09e128 by Michael DeHaan

Fixup modularized template module

parent 633e513a
...@@ -72,7 +72,7 @@ class ActionModule(object): ...@@ -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')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment