module(file): Fail instead of exit on exception

reviewable/pr18780/r1
Jens Rantil 11 years ago
parent 4262e76aec
commit 38d0df65d8

@ -235,7 +235,7 @@ def main():
module.exit_json(changed=True)
shutil.rmtree(path, ignore_errors=False)
except Exception, e:
module.exit_json(msg="rmtree failed: %s" % str(e))
module.fail_json(msg="rmtree failed: %s" % str(e))
else:
if module.check_mode:
module.exit_json(changed=True)

Loading…
Cancel
Save