freeipa/ipalib/pkcs10.py
Rob Crittenden 6518a600b4 Change FreeIPA references to IPA and Identity Management
In order to simplify the build process between upstream FreeIPA
and downstream builds (such as CentOS Stream) we are changing
some file references from FreeIPA to IPA (and Identity Management).

https://pagure.io/freeipa/issue/8669

Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
2021-01-21 13:51:45 +01:00

9 lines
215 B
Python

from __future__ import print_function
import sys
print(
"ipalib.pkcs10 module is deprecated and will be removed in IPA 4.6. "
"To load CSRs, please, use python-cryptography instead.",
file=sys.stderr
)