mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #7778 from toddmowen/unarchive-detect-error
unarchive: improve failure detection and reporting
This commit is contained in:
commit
3baed58eed
1 changed files with 3 additions and 1 deletions
|
@ -234,7 +234,9 @@ def main():
|
|||
|
||||
# do the unpack
|
||||
try:
|
||||
results = handler.unarchive()
|
||||
res_args['extract_results'] = handler.unarchive()
|
||||
if res_args['extract_results']['rc'] != 0:
|
||||
module.fail_json(msg="failed to unpack %s to %s" % (src, dest), **res_args)
|
||||
except IOError:
|
||||
module.fail_json(msg="failed to unpack %s to %s" % (src, dest))
|
||||
|
||||
|
|
Loading…
Reference in a new issue