If TLS is enabled, context now loads the system default C.A files

* This allows system wide deployed C.A to be used without any further
  configuration.
This commit is contained in:
Rémi Ferrand 2021-01-21 12:02:41 +01:00
parent cdb2474ee0
commit 63542f3226
1 changed files with 1 additions and 0 deletions

View File

@ -550,6 +550,7 @@ def main(cliargs):
context.verify_mode = ssl.CERT_NONE
else:
context.verify_mode = ssl.CERT_OPTIONAL
context.load_default_certs()
if args.cacert:
try:
context.load_verify_locations(args.cacert)