summaryrefslogtreecommitdiffstats
path: root/base/server/python
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-08-26 18:04:01 -0400
committerEndi S. Dewata <edewata@redhat.com>2013-08-26 18:58:37 -0400
commit8c101dcf24c956b28dd4739faaeabf8800179405 (patch)
tree71620fe85b1a61500f5e665bccd1b8303bccde19 /base/server/python
parent510ace9989fc8d74be817b9bfe2bb7b895fb121d (diff)
downloadpki-8c101dcf24c956b28dd4739faaeabf8800179405.tar.gz
pki-8c101dcf24c956b28dd4739faaeabf8800179405.tar.xz
pki-8c101dcf24c956b28dd4739faaeabf8800179405.zip
Fixed pkispawn blocking during TPS deployment.
Due to a recent change pkispawn would ask for the certificate database password interactively during TPS deployment. To fix the problem, the certutil invocation in pkihelper.py has been restored to the proper indentation.
Diffstat (limited to 'base/server/python')
-rw-r--r--base/server/python/pki/server/deployment/pkihelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/server/python/pki/server/deployment/pkihelper.py b/base/server/python/pki/server/deployment/pkihelper.py
index 45b78af8e..e72af1652 100644
--- a/base/server/python/pki/server/deployment/pkihelper.py
+++ b/base/server/python/pki/server/deployment/pkihelper.py
@@ -2145,8 +2145,8 @@ class Certutil:
log.PKIHELPER_CREATE_SECURITY_DATABASES_1,
' '.join(command),
extra=config.PKI_INDENTATION_LEVEL_2)
- # Execute this "certutil" command
- subprocess.check_call(command)
+ # Execute this "certutil" command
+ subprocess.check_call(command)
except subprocess.CalledProcessError as exc:
config.pki_log.error(log.PKI_SUBPROCESS_ERROR_1, exc,
extra=config.PKI_INDENTATION_LEVEL_2)