Commit 1b6019f6 by Jens Rantil

module(file): Fail instead of exit on exception

parent f4aa808b
......@@ -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)
......
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