[Secure-testing-commits] r41474 - check-external

Luciano Bello luciano at moszumanska.debian.org
Fri May 6 12:51:04 UTC 2016


Author: luciano
Date: 2016-05-06 12:51:04 +0000 (Fri, 06 May 2016)
New Revision: 41474

Modified:
   check-external/unknown-packages.py
Log:
unknown-packages.py: SSL certs. Fix from #787410

Modified: check-external/unknown-packages.py
===================================================================
--- check-external/unknown-packages.py	2016-05-06 12:31:12 UTC (rev 41473)
+++ check-external/unknown-packages.py	2016-05-06 12:51:04 UTC (rev 41474)
@@ -33,6 +33,10 @@
     db = security_db.DB(db_file, verbose=True)
     new_file = True
     
+debian_ca_bundle = '/etc/ssl/ca-debian/ca-certificates.crt'
+if os.path.exists(debian_ca_bundle):
+    os.environ['SSL_CERT_FILE'] = debian_ca_bundle
+
 ws = SOAPpy.SOAPProxy('https://packages.qa.debian.org/cgi-bin/soap-alpha.cgi')
 
 def checkInPTS(pkg):




More information about the Secure-testing-commits mailing list