diff options
| author | Endi S. Dewata <edewata@redhat.com> | 2013-08-26 18:04:01 -0400 |
|---|---|---|
| committer | Endi S. Dewata <edewata@redhat.com> | 2013-08-26 18:58:37 -0400 |
| commit | 8c101dcf24c956b28dd4739faaeabf8800179405 (patch) | |
| tree | 71620fe85b1a61500f5e665bccd1b8303bccde19 /base/server/python | |
| parent | 510ace9989fc8d74be817b9bfe2bb7b895fb121d (diff) | |
| download | pki-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.py | 4 |
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) |
