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
--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code