diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-08-31 13:22:33 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-08-30 20:17:57 -0400 |
commit | f8d068817869e668b5b4479f979fb8a4409e1c8f (patch) | |
tree | 0e88cc2eb7061fa91caefa79e8e163976c1fbc5a /ipaserver/install | |
parent | ebb0b386a36948b0f78f237995190ceb64c73325 (diff) | |
download | freeipa-f8d068817869e668b5b4479f979fb8a4409e1c8f.tar.gz freeipa-f8d068817869e668b5b4479f979fb8a4409e1c8f.tar.xz freeipa-f8d068817869e668b5b4479f979fb8a4409e1c8f.zip |
Use the IPA server cert profile in the installer.
We were still using the caRAserverCert profile during installation.
https://fedorahosted.org/freeipa/ticket/1744
Diffstat (limited to 'ipaserver/install')
-rw-r--r-- | ipaserver/install/certs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/certs.py b/ipaserver/install/certs.py index d3df1681b..ead9c8159 100644 --- a/ipaserver/install/certs.py +++ b/ipaserver/install/certs.py @@ -622,7 +622,7 @@ class CertDB(object): # We just want the CSR bits, make sure there is nothing else csr = pkcs10.strip_header(csr) - params = {'profileId': 'caRAserverCert', + params = {'profileId': 'caIPAserviceCert', 'cert_request_type': 'pkcs10', 'requestor_name': 'IPA Installer', 'cert_request': csr, |