mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Check return value of get_distribution()
On none-Linux systems `get_distribution()` returns `None`, which fails in `fetch_url`, because the return value of `get_distribution()` is not checked before calling `lower()` on the result.
This commit is contained in:
@@ -842,7 +842,7 @@ def fetch_url(module, url, data=None, headers=None, method=None,
|
|||||||
info.update(dict(msg="OK (%s bytes)" % r.headers.get('Content-Length', 'unknown'), status=200))
|
info.update(dict(msg="OK (%s bytes)" % r.headers.get('Content-Length', 'unknown'), status=200))
|
||||||
except NoSSLError, e:
|
except NoSSLError, e:
|
||||||
distribution = get_distribution()
|
distribution = get_distribution()
|
||||||
if distribution.lower() == 'redhat':
|
if distribution is not None and distribution.lower() == 'redhat':
|
||||||
module.fail_json(msg='%s. You can also install python-ssl from EPEL' % str(e))
|
module.fail_json(msg='%s. You can also install python-ssl from EPEL' % str(e))
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg='%s' % str(e))
|
module.fail_json(msg='%s' % str(e))
|
||||||
|
|||||||
Reference in New Issue
Block a user