summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2015-05-14 01:46:06 -0400
committerJan Cholasta <jcholast@redhat.com>2016-06-15 07:13:38 +0200
commit3d4db834caa0688bcefc0092b7978402b783eaf3 (patch)
treee9fddc70bdff260ce738dc9458938851453d86c0 /ipalib
parent8135651abb857fbe489a1de8aacad3747d7d5cc9 (diff)
downloadfreeipa-3d4db834caa0688bcefc0092b7978402b783eaf3.tar.gz
freeipa-3d4db834caa0688bcefc0092b7978402b783eaf3.tar.xz
freeipa-3d4db834caa0688bcefc0092b7978402b783eaf3.zip
Add 'ca' plugin
This commit adds the 'ca' plugin for creating and managing lightweight CAs. The initial implementation supports a single level of sub-CAs underneath the IPA CA. This commit also: - adds the container for FreeIPA CA objects - adds schema for the FreeIPA CA objects - updates ipa-pki-proxy.conf to allow access to the Dogtag lightweight CAs REST API. Part of: https://fedorahosted.org/freeipa/ticket/4559 Reviewed-By: Jan Cholasta <jcholast@redhat.com> Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 97dff1d80..05ba1adbb 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -122,6 +122,7 @@ DEFAULT_CONFIG = (
('container_topology', DN(('cn', 'topology'), ('cn', 'ipa'), ('cn', 'etc'))),
('container_caacl', DN(('cn', 'caacls'), ('cn', 'ca'))),
('container_locations', DN(('cn', 'locations'), ('cn', 'etc'))),
+ ('container_ca', DN(('cn', 'cas'), ('cn', 'ca'))),
# Ports, hosts, and URIs:
('xmlrpc_uri', 'http://localhost:8888/ipa/xml'),
@@ -265,3 +266,4 @@ REPL_AGMT_STRIP_ATTRS = ('modifiersName',
DOMAIN_SUFFIX_NAME = 'domain'
CA_SUFFIX_NAME = 'ca'
PKI_GSSAPI_SERVICE_NAME = 'dogtag'
+IPA_CA_CN = u'ipa'