mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
give a hint which package to install to get CA certificates
This commit is contained in:
parent
d0213c63a9
commit
5e3fe8ba08
@ -547,10 +547,10 @@ def _build_opener(apiurl):
|
||||
capath = i
|
||||
break
|
||||
if not cafile and not capath:
|
||||
raise oscerr.OscIOError(None, 'No CA certificates found')
|
||||
raise oscerr.OscIOError(None, 'No CA certificates found. (You may want to install ca-certificates-mozilla package)')
|
||||
ctx = oscssl.mySSLContext()
|
||||
if ctx.load_verify_locations(capath=capath, cafile=cafile) != 1:
|
||||
raise oscerr.OscIOError(None, 'No CA certificates found')
|
||||
raise oscerr.OscIOError(None, 'No CA certificates found. (You may want to install ca-certificates-mozilla package)')
|
||||
opener = m2urllib2.build_opener(ctx, oscssl.myHTTPSHandler(ssl_context=ctx, appname='osc'), HTTPCookieProcessor(cookiejar), authhandler, proxyhandler)
|
||||
else:
|
||||
handlers = [HTTPCookieProcessor(cookiejar), authhandler, proxyhandler]
|
||||
|
Loading…
Reference in New Issue
Block a user