From 60b51222f5aab24e8aab1b9f763c2d63eb29bc89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Touceda?= Date: Thu, 10 Jul 2014 11:29:31 -0300 Subject: Look for cacert.pem in the Resources dir in OSX --- changes/feature_support_cacert_osx | 1 + src/leap/common/ca_bundle.py | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 changes/feature_support_cacert_osx diff --git a/changes/feature_support_cacert_osx b/changes/feature_support_cacert_osx new file mode 100644 index 0000000..90a51bf --- /dev/null +++ b/changes/feature_support_cacert_osx @@ -0,0 +1 @@ + o Look for bundled cacert.pem in the Resources dir for OSX. \ No newline at end of file diff --git a/src/leap/common/ca_bundle.py b/src/leap/common/ca_bundle.py index 1e00f25..d8c72a6 100644 --- a/src/leap/common/ca_bundle.py +++ b/src/leap/common/ca_bundle.py @@ -21,8 +21,12 @@ If you are packaging Requests, e.g., for a Linux distribution or a managed environment, you can change the definition of where() to return a separately packaged CA bundle. """ +import platform import os.path +_system = platform.system() + +IS_MAC = _system == "Darwin" def where(): """ @@ -30,6 +34,10 @@ def where(): :rtype: str """ # vendored bundle inside Requests, plus some additions of ours + if IS_MAC: + return os.path.join("/Applications", "Bitmask.app", + "Contents", "Resources", + "cacert.pem") return os.path.join(os.path.dirname(__file__), 'cacert.pem') if __name__ == '__main__': -- cgit v1.2.3