mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
6518a600b4
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>
9 lines
215 B
Python
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
|
|
)
|