Skip to content

Commit

Permalink
Issue 5734 - RFE - Exclude pwdFailureTime and ContextCSN (#5735)
Browse files Browse the repository at this point in the history
Bug Description: A customer reported an issue with openldap to 389ds migration. This was due to
their openldap instance using a number of openldap attributes that I had not encountered in other
migrations.

These attributes are operational to openldap only and can be safely excluded.

Fix Description: Exclude pwdFailureTime and ContextCSN

fixes: #5734

Author: William Brown <william@blackhats.net.au>

Review by: ???
  • Loading branch information
Firstyear committed Apr 21, 2023
1 parent c13fe3d commit 002a0ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib389/lib389/migrate/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,13 +662,16 @@ def __init__(self, inst, olschema=None, oldatabases=None, ldifs=None, skip_schem
[
# Core openldap attrs that we can't use, and don't matter.
'entrycsn',
'contextcsn',
'structuralobjectclass',
# pwd attributes from ppolicy which are not supported.
'pwdattribute',
'pwdcheckquality',
'pwdsafemodify',
'pwdcheckmodule',
'pwdmaxrecordedfailure',
# ppolicy attr that isn't in schema that isn't supported.
'pwdfailuretime',
# dds attributes we don't support
'dgidentity',
'dgauthz'
Expand Down

0 comments on commit 002a0ca

Please sign in to comment.