Don't check for schema uniqueness when comparing in ldapupdate.

This is needed on F-17+, otherwise things blow up when we try to see
if we've added new schema.

Introspection is required to see if the argument check_uniqueness is
available.

https://fedorahosted.org/freeipa/ticket/2383
This commit is contained in:
Rob Crittenden 2012-02-22 15:53:12 -05:00
parent ecf544ea0b
commit 7aeae93c34

View File

@ -43,6 +43,7 @@ import os
import pwd
import fnmatch
import csv
import inspect
from ipaserver.install.plugins import PRE_UPDATE, POST_UPDATE
from ipaserver.install.plugins import FIRST, MIDDLE, LAST
@ -586,6 +587,10 @@ class LDAPUpdate:
return True if the schema has changed
return False if it has not
"""
signature = inspect.getargspec(ldap.schema.SubSchema.__init__)
if 'check_uniqueness' in signature.args:
s = ldap.schema.SubSchema(s, check_uniqueness=0)
else:
s = ldap.schema.SubSchema(s)
s = s.ldap_entry()