py3: cainstance: fix BytesWarning

https://fedorahosted.org/freeipa/ticket/4985

Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
This commit is contained in:
Martin Basti
2017-02-13 17:14:51 +01:00
parent d89de4219d
commit b09a941f34

View File

@@ -1638,11 +1638,16 @@ def repair_profile_caIPAserviceCert():
return
indicators = [
"policyset.serverCertSet.1.default.params.name="
"CN=$request.req_subject_name.cn$, OU=pki-ipa, O=IPA ",
"policyset.serverCertSet.9.default.params.crlDistPointsPointName_0="
"https://ipa.example.com/ipa/crl/MasterCRL.bin",
]
(
b"policyset.serverCertSet.1.default.params.name="
b"CN=$request.req_subject_name.cn$, OU=pki-ipa, O=IPA "
),
(
b"policyset.serverCertSet.9.default.params."
b"crlDistPointsPointName_0="
b"https://ipa.example.com/ipa/crl/MasterCRL.bin"
),
]
need_repair = all(l in cur_config for l in indicators)
if need_repair: