summaryrefslogtreecommitdiffstats
path: root/base/server/python/pki/server/__init__.py
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-11-14 15:32:11 -0500
committerEndi S. Dewata <edewata@redhat.com>2013-11-20 12:17:29 -0500
commitb5d353f13eefeed5a234850d5c95e3fc03340d36 (patch)
tree8037b51b7be65fb010a8bb9f9de7a962804fef2d /base/server/python/pki/server/__init__.py
parentb1a187e3e731f25a37f7df0a2cd361224125b531 (diff)
downloadpki-b5d353f13eefeed5a234850d5c95e3fc03340d36.tar.gz
pki-b5d353f13eefeed5a234850d5c95e3fc03340d36.tar.xz
pki-b5d353f13eefeed5a234850d5c95e3fc03340d36.zip
Replaced auth.properties with acl.properties.
The ACL mapping files have been renamed from auth.properties to acl.properties to match the actual content and moved into the subsystem conf folder. The authentication method mapping files have been extracted from the interceptor into actual files. The ACLInterceptor and AuthMethodInterceptors have been modified to read the default mapping first, then overwrite it with custom mapping if it exists in the subsystem folder. The UpdateAuthzProperties upgrade script has been replaced with RemoveAuthProperties that will remove the old auth.properties.
Diffstat (limited to 'base/server/python/pki/server/__init__.py')
-rw-r--r--base/server/python/pki/server/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/server/python/pki/server/__init__.py b/base/server/python/pki/server/__init__.py
index eb1e4b81a..e41f1a980 100644
--- a/base/server/python/pki/server/__init__.py
+++ b/base/server/python/pki/server/__init__.py
@@ -26,7 +26,7 @@ import pki
INSTANCE_BASE_DIR = '/var/lib/pki'
REGISTRY_DIR = '/etc/sysconfig/pki'
-SUBSYSTEM_TYPES = ['ca', 'kra', 'ocsp', 'tks']
+SUBSYSTEM_TYPES = ['ca', 'kra', 'ocsp', 'tks', 'tps']
class PKISubsystem(object):