mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
0d7daf0495
This removes pkcs10 module contents and adds a warning message about its future removal. https://pagure.io/freeipa/issue/7131
9 lines
219 B
Python
9 lines
219 B
Python
from __future__ import print_function
|
|
import sys
|
|
|
|
print(
|
|
"ipalib.pkcs10 module is deprecated and will be removed in FreeIPA 4.6. "
|
|
"To load CSRs, please, use python-cryptography instead.",
|
|
file=sys.stderr
|
|
)
|