mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-04 12:22:45 +00:00
Restore force in copy since arguments are no longer clobbered
Fixes #2388.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user