diff options
Diffstat (limited to 'testprogs')
-rwxr-xr-x | testprogs/blackbox/dbcheck.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testprogs/blackbox/dbcheck.sh b/testprogs/blackbox/dbcheck.sh index 1f951e9e89b..d926afb8d99 100755 --- a/testprogs/blackbox/dbcheck.sh +++ b/testprogs/blackbox/dbcheck.sh @@ -22,6 +22,11 @@ dbcheck_fix_one_way_links() { $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_string_dn_component_mismatch --attrs="lastKnownParent defaultObjectCategory fromServer rIDSetReferences" --cross-ncs $ARGS } +# This list of attributes can be freely extended +dbcheck_fix_stale_links() { + $BINDIR/samba-tool dbcheck --quiet --fix --yes remove_plausible_deleted_DN_links --attrs="member" --cross-ncs $ARGS +} + # This test shows that this does not do anything to a current # provision (that would be a bug) dbcheck_reset_well_known_acls() { @@ -41,6 +46,7 @@ force_modules() { } dbcheck_fix_one_way_links +dbcheck_fix_stale_links testit "dbcheck" dbcheck testit "reindex" reindex testit "fixed_attrs" fixed_attrs |