From 1b5d731f46e29c7129f0e985e77b693440754642 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Tue, 2 Feb 2016 03:32:50 +0100 Subject: Fixed KRA installation. Due to a recent change the KRA installation failed because the installer was trying to read the pki_external_csr_path parameter which is not available for KRA installation. The installer has been fixed to read the parameter in external CA case only. https://fedorahosted.org/pki/ticket/456 (cherry picked from commit d42f39334ce4b4f5fa89707bfb6145039ff04579) --- base/server/sbin/pkispawn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/server/sbin/pkispawn') diff --git a/base/server/sbin/pkispawn b/base/server/sbin/pkispawn index 967d5f5e5..7ab11a515 100755 --- a/base/server/sbin/pkispawn +++ b/base/server/sbin/pkispawn @@ -613,9 +613,9 @@ 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: + external_csr_path = deployer.mdict['pki_external_csr_path'] if external_csr_path: print_external_ca_step_one_information(parser.mdict) else: -- cgit