Files
freeipa/ipalib/pkcs10.py
Rob Crittenden f05ee29d10 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>
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
2021-02-09 09:48:23 -05: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
)