summaryrefslogtreecommitdiffstats
path: root/base/server/sbin
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-01-22 00:03:39 +0100
committerEndi S. Dewata <edewata@redhat.com>2016-01-23 01:37:03 +0100
commit66a4b7e635a4456a102221049c58c461d3429093 (patch)
treee435b49d46f18fbd3aa5a77ac4407da389eaa991 /base/server/sbin
parent67ac39227e5db83c7a4a7ad72364f3dcd30db05e (diff)
downloadpki-66a4b7e635a4456a102221049c58c461d3429093.tar.gz
pki-66a4b7e635a4456a102221049c58c461d3429093.tar.xz
pki-66a4b7e635a4456a102221049c58c461d3429093.zip
Fixed installation summary for existing CA.
The pkispawn has been modified to display the proper summary for external CA and existing CA cases. https://fedorahosted.org/pki/ticket/456
Diffstat (limited to 'base/server/sbin')
-rwxr-xr-xbase/server/sbin/pkispawn22
1 files changed, 19 insertions, 3 deletions
diff --git a/base/server/sbin/pkispawn b/base/server/sbin/pkispawn
index 9c2aa2d66..bca33799c 100755
--- a/base/server/sbin/pkispawn
+++ b/base/server/sbin/pkispawn
@@ -616,9 +616,13 @@ def main(argv):
external = deployer.configuration_file.external
step_one = deployer.configuration_file.external_step_one
+ external_csr_path = deployer.configuration_file.external_csr_path
if external and step_one:
- print_step_one_information(parser.mdict)
+ if external_csr_path:
+ print_external_ca_step_one_information(parser.mdict)
+ else:
+ print_existing_ca_step_one_information(parser.mdict)
else:
print_install_information(parser.mdict)
@@ -630,7 +634,7 @@ def set_port(parser, tag, prompt, existing_data):
parser.read_text(prompt, config.pki_subsystem, tag)
-def print_step_one_information(mdict):
+def print_external_ca_step_one_information(mdict):
print(log.PKI_SPAWN_INFORMATION_HEADER)
print(" The %s subsystem of the '%s' instance is still incomplete." %
@@ -641,7 +645,19 @@ def print_step_one_information(mdict):
% mdict['pki_external_csr_path'])
print()
print(" Submit the CSR to an external CA to generate a CA certificate\n"
- " for this subsystem.")
+ " for this subsystem. Import the CA certificate and the certificate\n"
+ " chain, then continue the installation.")
+ print(log.PKI_SPAWN_INFORMATION_FOOTER)
+
+
+def print_existing_ca_step_one_information(mdict):
+
+ print(log.PKI_SPAWN_INFORMATION_HEADER)
+ print(" The %s subsystem of the '%s' instance is still incomplete." %
+ (config.pki_subsystem, mdict['pki_instance_name']))
+ print()
+ print(" Import an existing CA certificate with the key and the CSR, and\n"
+ " the certificate chain if available, then continue the installation.")
print(log.PKI_SPAWN_INFORMATION_FOOTER)