From 8c101dcf24c956b28dd4739faaeabf8800179405 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 26 Aug 2013 18:04:01 -0400 Subject: 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. --- base/server/python/pki/server/deployment/pkihelper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/server/python') 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) -- cgit