summaryrefslogtreecommitdiffstats
path: root/keystone/common/openssl.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystone/common/openssl.py')
-rw-r--r--keystone/common/openssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/common/openssl.py b/keystone/common/openssl.py
index 47ac5aa6..427202ae 100644
--- a/keystone/common/openssl.py
+++ b/keystone/common/openssl.py
@@ -16,8 +16,8 @@
import os
import stat
-import subprocess
+from keystone.common import environment
from keystone.common import logging
from keystone import config
@@ -77,7 +77,7 @@ class BaseCertificateConfigure(object):
def exec_command(self, command):
to_exec = command % self.ssl_dictionary
LOG.info(to_exec)
- subprocess.check_call(to_exec.rsplit(' '))
+ environment.subprocess.check_call(to_exec.rsplit(' '))
def build_ssl_config_file(self):
if not file_exists(self.ssl_config_file_name):