|
Lines 955-960
def _modify(self, modify_childs=1, ignore_license=0):
Link Here
|
| 955 |
|
955 |
|
| 956 |
ml = self.call_udm_property_hook('hook_ldap_modlist', self, ml) |
956 |
ml = self.call_udm_property_hook('hook_ldap_modlist', self, ml) |
| 957 |
|
957 |
|
|
|
958 |
if any(True for x, y, z in ml if x == 'objectClass' and set(y) == set(z)): |
| 959 |
ml = [c for c in ml if c[0] != 'objectClass'] |
| 960 |
|
| 958 |
#FIXME: timeout without exception if objectClass of Object is not exsistant !! |
961 |
#FIXME: timeout without exception if objectClass of Object is not exsistant !! |
| 959 |
self.lo.modify(self.dn, ml, ignore_license=ignore_license) |
962 |
self.lo.modify(self.dn, ml, ignore_license=ignore_license) |
| 960 |
|
963 |
|