[Freeipa-devel] [freeipa PR#177][comment] Add options to write lightweight CA cert or chain to file

jcholast freeipa-github-notification at redhat.com
Mon Dec 12 07:22:52 UTC 2016


  URL: https://github.com/freeipa/freeipa/pull/177
Title: #177: Add options to write lightweight CA cert or chain to file

jcholast commented:
"""
@frasertweedale, I'm afraid we can't do that. As I said in the comment, you cannot unconditionally import from `ipaplatform` to `ipalib` anymore, so you either have to make the change to PyASN1, or make the import conditional:
```python
try:
    from ipaplatform.paths import paths
except ImportError:
    OPENSSL = '/usr/bin/openssl'
else:
    OPENSSL = paths.OPENSSL
```
"""

See the full comment at https://github.com/freeipa/freeipa/pull/177#issuecomment-266359452


More information about the Freeipa-devel mailing list