Restore force in copy since arguments are no longer clobbered

Fixes #2388.
parent 27978ed9
......@@ -105,8 +105,8 @@ def main():
md5sum_dest = None
if os.path.exists(dest):
# if not force:
# module.exit_json(msg="file already exists and force is set (%s)" % force, src=src, dest=dest, changed=False)
if not force:
module.exit_json(msg="file already exists", src=src, dest=dest, changed=False)
if (os.path.isdir(dest)):
basename = os.path.basename(src)
dest = os.path.join(dest, basename)
......
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