summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-01-06 01:18:48 -0600
committerEndi S. Dewata <edewata@redhat.com>2012-01-13 11:02:57 -0600
commit5591cd5dfe97d7ad40484dcadfd69414f55a72af (patch)
treeddb9a8272e0660747016e6ba93cade6226201cf6 /ipalib
parent783f1998372536aa1a2a95b2056e2314f74383d7 (diff)
downloadfreeipa.git-5591cd5dfe97d7ad40484dcadfd69414f55a72af.tar.gz
freeipa.git-5591cd5dfe97d7ad40484dcadfd69414f55a72af.tar.xz
freeipa.git-5591cd5dfe97d7ad40484dcadfd69414f55a72af.zip
Added instructions to generate CSR.
The certificate request dialog box has been modified to show the OpenSSL commands for generating a CSR. The realm and entry names in the test data have been fixed to be more consistent. Ticket #1012
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/internal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index 31a4f9c6..50f87bfb 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -264,7 +264,6 @@ class i18n_messages(Command):
"certificate_hold": _("Certificate Hold"),
"cessation_of_operation": _("Cessation of Operation"),
"common_name": _("Common Name"),
- "enter_csr": _("Enter the Base64-encoded CSR below"),
"expires_on": _("Expires On"),
"fingerprints": _("Fingerprints"),
"issue_certificate": _("Issue New Certificate for ${entity} ${primary_key}"),
@@ -281,6 +280,7 @@ class i18n_messages(Command):
"privilege_withdrawn": _("Privilege Withdrawn"),
"reason": _("Reason for Revocation"),
"remove_from_crl": _("Remove from CRL"),
+ "request_message": _("<ol><li>Create a private key in a secure location, for example:<br/># openssl genrsa -out key.pem</li><li>Create a CSR with subject CN=${hostname},O=${realm}, for example:<br/># openssl req -new -key key.pem -out cert.csr \\<br/>&nbsp;&nbsp;&nbsp;&nbsp;-subj '/O=${realm}/CN=${hostname}'</li><li>Copy and paste the CSR below:</li></ol>"),
"restore_certificate": _("Restore Certificate for ${entity} ${primary_key}"),
"restore_confirmation": _("To confirm your intention to restore this certificate, click the \"Restore\" button."),
"revoke_certificate": _("Revoke Certificate for ${entity} ${primary_key}"),