From ec57bc3e44ec5e8f6c7e5e1ad5c56751016e3b09 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 10 Sep 2008 02:50:26 -0400 Subject: Tool for doing configuration updates over LDAP This tool takes as input a file which contains basically an LDIF, prefixed with a command: default, add, remove or only. These define the operations to perform such as adding new entries, adding new sub-entries to an existing entry, adding or modifying attributes in a record. If an index entry is modified a task is created to re-create the index. Schema may be added using this tool. 454031 --- ipa-python/entity.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ipa-python/entity.py') diff --git a/ipa-python/entity.py b/ipa-python/entity.py index a5aa33ca3..64db350ba 100644 --- a/ipa-python/entity.py +++ b/ipa-python/entity.py @@ -19,6 +19,7 @@ import ldap import ldif import re import cStringIO +import copy import ipa.ipautil @@ -33,6 +34,13 @@ def utf8_encode_values(values): else: return utf8_encode_value(values) +def copy_CIDict(x): + """Do a deep copy of a CIDict""" + y = {} + for key, value in x.iteritems(): + y[copy.deepcopy(key)] = copy.deepcopy(value) + return y + class Entity: """This class represents an IPA user. An LDAP entry consists of a DN and a list of attributes. Each attribute consists of a name and a list of @@ -63,7 +71,7 @@ class Entity: self.dn = '' self.data = ipa.ipautil.CIDict() - self.orig_data = ipa.ipautil.CIDict(self.data) + self.orig_data = ipa.ipautil.CIDict(copy_CIDict(self.data)) def __nonzero__(self): """This allows us to do tests like if entry: returns false if there is no data, -- cgit