Commit 8f2580fc by Jens Rantil

module(apt_key): don't catch `SystemExit`

If we do this, we risk outputting two JSON payloads, which will be
unparsable.
parent 27199dc2
......@@ -138,7 +138,7 @@ def download_key(module, url):
module.fail_json("error connecting to download key from url")
data = connection.read()
return data
except:
except Exception:
module.fail_json(msg="error getting key id from url", traceback=format_exc())
......
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