summaryrefslogtreecommitdiffstats
path: root/base/server/python
diff options
context:
space:
mode:
Diffstat (limited to 'base/server/python')
-rw-r--r--base/server/python/pki/server/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/server/python/pki/server/__init__.py b/base/server/python/pki/server/__init__.py
index aaf10bd08..b2ea196ae 100644
--- a/base/server/python/pki/server/__init__.py
+++ b/base/server/python/pki/server/__init__.py
@@ -41,8 +41,8 @@ class PKISubsystem(object):
self.base_dir = os.path.join(INSTANCE_BASE_DIR, \
instance.name, subsystemName)
else:
- self.conf_dir = os.path.join(BASE_DIR, instance.name, 'conf')
- self.base_dir = os.path.join(BASE_DIR, instance.name)
+ self.conf_dir = os.path.join(pki.BASE_DIR, instance.name, 'conf')
+ self.base_dir = os.path.join(pki.BASE_DIR, instance.name)
self.validate()
@@ -66,8 +66,8 @@ class PKIInstance(object):
self.conf_dir = os.path.join(INSTANCE_BASE_DIR, name, 'conf')
self.base_dir = os.path.join(INSTANCE_BASE_DIR, name)
else:
- self.conf_dir = os.path.join(BASE_DIR, name, 'conf')
- self.base_dir = os.path.join(BASE_DIR, name)
+ self.conf_dir = os.path.join(pki.BASE_DIR, name, 'conf')
+ self.base_dir = os.path.join(pki.BASE_DIR, name)
self.validate()