Commit 3baed58e by James Cammarata

Merge pull request #7778 from toddmowen/unarchive-detect-error

unarchive: improve failure detection and reporting
parents 6d9cc64e a4fe9105
......@@ -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))
......
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