summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2014-11-16 23:22:15 -0600
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-11-19 16:39:06 -0300
commite0ffa9b809daf911c03291dcd016682f5ef09e54 (patch)
tree658237ac8eb76aa709683c1a2d72f361af9ebaab
parentdce318792f5abda706c5437f363dc8212c7c50f3 (diff)
Add ssl certificates to the updater
-rw-r--r--changes/bug_ssl_cert1
-rw-r--r--src/launcher.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug_ssl_cert b/changes/bug_ssl_cert
new file mode 100644
index 0000000..62d815f
--- /dev/null
+++ b/changes/bug_ssl_cert
@@ -0,0 +1 @@
+- Add ssl cert to the updater
diff --git a/src/launcher.py b/src/launcher.py
index bbd4f42..cef72af 100644
--- a/src/launcher.py
+++ b/src/launcher.py
@@ -43,6 +43,8 @@ class TUF(threading.Thread):
self.dest_path = os.path.join(self.bundle_path, 'tmp')
self.update_path = os.path.join(self.bundle_path, 'updates')
+ tuf.conf.ssl_certificates = "./lib/leap/common/cacert.pem"
+
threading.Thread.__init__(self)
def run(self):