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
pull/5091/head
Andrew Smith 11 years ago
parent 7b01c83159
commit e2d03173d2

@ -96,4 +96,5 @@ class ActionModule(object):
res = self.runner._execute_module(conn, tmp, 'copy', module_args, inject=inject)
return res
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)

Loading…
Cancel
Save