mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #764 from willthames/fail_copy_on_directory
Revert acceptance of directory as dest for copy
This commit is contained in:
commit
9e0bf168ca
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def main():
|
|||
module.fail_json(msg="Destination %s not readable" % (dest))
|
||||
# Allow dest to be directory without compromising md5 check
|
||||
if (os.path.isdir(dest)):
|
||||
dest = os.join(dest, os.path.basename(src))
|
||||
module.fail_json(msg="Destination %s cannot be a directory" % (dest))
|
||||
md5sum_dest = module.md5(dest)
|
||||
else:
|
||||
if not os.access(os.path.dirname(dest), os.W_OK):
|
||||
|
|
Loading…
Reference in a new issue