diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2012-01-06 01:18:48 -0600 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2012-01-13 10:57:59 -0600 |
commit | f56f8a34d39ba13403e7a693b639b6b37fcd0a04 (patch) | |
tree | 6503617f5530db7332f9434302dd56f2cf672eca /ipalib | |
parent | 3d1b864024255b97999f100d05c3bf63d99dacb5 (diff) | |
download | freeipa-f56f8a34d39ba13403e7a693b639b6b37fcd0a04.tar.gz freeipa-f56f8a34d39ba13403e7a693b639b6b37fcd0a04.tar.xz freeipa-f56f8a34d39ba13403e7a693b639b6b37fcd0a04.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 31a4f9c6a..50f87bfb8 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/> -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}"), |