mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes issue 1197 for s3 module, where the file gets downloaded even if checksums match
This commit is contained in:
parent
bfb36f0f1f
commit
70188fe02a
1 changed files with 6 additions and 0 deletions
|
@ -328,6 +328,12 @@ def main():
|
|||
s3_url = module.params.get('s3_url')
|
||||
src = module.params.get('src')
|
||||
|
||||
if overwrite not in ['always', 'never', 'different']:
|
||||
if module.boolean(overwrite):
|
||||
overwrite = 'always'
|
||||
else:
|
||||
overwrite='never'
|
||||
|
||||
if overwrite not in ['always', 'never', 'different']:
|
||||
if module.boolean(overwrite):
|
||||
overwrite = 'always'
|
||||
|
|
Loading…
Reference in a new issue