From f56f8a34d39ba13403e7a693b639b6b37fcd0a04 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Fri, 6 Jan 2012 01:18:48 -0600 Subject: 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 --- ipalib/plugins/internal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/internal.py') 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": _("
  1. Create a private key in a secure location, for example:
    # openssl genrsa -out key.pem
  2. Create a CSR with subject CN=${hostname},O=${realm}, for example:
    # openssl req -new -key key.pem -out cert.csr \\
        -subj '/O=${realm}/CN=${hostname}'
  3. Copy and paste the CSR below:
"), "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}"), -- cgit