Commit e2d03173 by Andrew Smith

The file module doesn’t have it’s module_args reset

I believe that this should be reset in the same way that the copy module
does
parent 7b01c831
...@@ -96,4 +96,5 @@ class ActionModule(object): ...@@ -96,4 +96,5 @@ class ActionModule(object):
res = self.runner._execute_module(conn, tmp, 'copy', module_args, inject=inject) res = self.runner._execute_module(conn, tmp, 'copy', module_args, inject=inject)
return res return res
else: else:
module_args = "%s src=%s dest=%s original_basename=%s" % (module_args, pipes.quote(xfered), pipes.quote(dest), pipes.quote(os.path.basename(src)))
return self.runner._execute_module(conn, tmp, 'file', module_args, inject=inject) return self.runner._execute_module(conn, tmp, 'file', module_args, inject=inject)
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