2015-08-12 13:44:11 +02:00
|
|
|
from __future__ import print_function
|
2017-09-25 09:18:41 +02:00
|
|
|
import sys
|
2015-08-12 13:44:11 +02:00
|
|
|
|
2017-09-25 09:18:41 +02:00
|
|
|
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
|
|
|
|
|
)
|