diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-07-18 10:58:41 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-07-18 10:58:41 -0300 |
commit | 2498d0c1712b06efe6ac29d883d3a80b541fe765 (patch) | |
tree | 75e765e9fea35913d730fac72fa884a4babfac4f /src/leap/common/ca_bundle.py | |
parent | 5e29c85bae24784f4826b1ae735d2627a0e1d97f (diff) | |
parent | bde8a330dc0a0cd43df1679a3f2c1d08b9bcfdf3 (diff) |
Merge branch 'release-0.3.9'0.3.9
Diffstat (limited to 'src/leap/common/ca_bundle.py')
-rw-r--r-- | src/leap/common/ca_bundle.py | 8 |
1 files changed, 8 insertions, 0 deletions
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__': |