From 378238b14e9faec4b871ff0178aa78e62e9b3580 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Wed, 11 Jul 2012 16:13:25 +0200 Subject: Warn user if an ID range with incorrect size was created IPA 3.0 introduced range ID objects in replicated space which specify a range of IDs assigned via DNA plugin. ipa-ldap-updater generates the default ID range which should correspond with IDs assigned to IPA users. However, since correct range size is not known, we should at least warn that a range with invalid size was created so that user can amend it. https://fedorahosted.org/freeipa/ticket/2892 --- ipalib/constants.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ipalib') diff --git a/ipalib/constants.py b/ipalib/constants.py index ad6d18869..f0f89a3b3 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -105,6 +105,8 @@ DEFAULT_CONFIG = ( ('container_trusts', 'cn=trusts'), ('container_adtrusts', 'cn=ad,cn=trusts'), ('container_ranges', 'cn=ranges,cn=etc'), + ('container_dna', 'cn=dna,cn=ipa,cn=etc'), + ('container_dna_posix_ids', 'cn=posix-ids,cn=dna,cn=ipa,cn=etc'), # Ports, hosts, and URIs: # FIXME: let's renamed xmlrpc_uri to rpc_xml_uri -- cgit