From 3253a305416c963fcdc2670caa2c22c167ccc0d2 Mon Sep 17 00:00:00 2001 From: Ana Krivokapic Date: Tue, 12 Feb 2013 10:50:00 -0500 Subject: Add list of domains associated to our realm to cn=etc Add new LDAP container to store the list of domains associated with IPA realm. Add two new ipa commands (ipa realmdomains-show and ipa realmdomains-mod) to allow manipulation of the list of realm domains. Unit test file covering these new commands was added. https://fedorahosted.org/freeipa/ticket/2945 --- ipalib/constants.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/constants.py') diff --git a/ipalib/constants.py b/ipalib/constants.py index e6d95144..ecb92558 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -108,6 +108,7 @@ DEFAULT_CONFIG = ( ('container_ranges', DN(('cn', 'ranges'), ('cn', 'etc'))), ('container_dna', DN(('cn', 'dna'), ('cn', 'ipa'), ('cn', 'etc'))), ('container_dna_posix_ids', DN(('cn', 'posix-ids'), ('cn', 'dna'), ('cn', 'ipa'), ('cn', 'etc'))), + ('container_realm_domains', DN(('cn', 'Realm Domains'), ('cn', 'ipa'), ('cn', 'etc'))), # Ports, hosts, and URIs: # FIXME: let's renamed xmlrpc_uri to rpc_xml_uri -- cgit