summaryrefslogtreecommitdiffstats
path: root/base/server/sbin
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-02-02 03:32:50 +0100
committerEndi S. Dewata <edewata@redhat.com>2016-02-03 01:29:02 +0100
commitd42f39334ce4b4f5fa89707bfb6145039ff04579 (patch)
tree5af9fc4fafb0ab5894bc92e304d6d15256f87513 /base/server/sbin
parentf778a2654496e064cace35f2aa25cf7dc304f5fd (diff)
downloadpki-d42f39334ce4b4f5fa89707bfb6145039ff04579.tar.gz
pki-d42f39334ce4b4f5fa89707bfb6145039ff04579.tar.xz
pki-d42f39334ce4b4f5fa89707bfb6145039ff04579.zip
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
Diffstat (limited to 'base/server/sbin')
-rwxr-xr-xbase/server/sbin/pkispawn2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/server/sbin/pkispawn b/base/server/sbin/pkispawn
index bca33799c..7d839851f 100755
--- a/base/server/sbin/pkispawn
+++ b/base/server/sbin/pkispawn
@@ -616,9 +616,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: