diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
commit | 8daa83a594a2e98f39d764422bfbdbc62c9efd44 (patch) | |
tree | 4099e8021376c7d8c05bdf8503093d80e9c7bad0 /testprogs/blackbox/dbcheck.sh | |
parent | Initial commit. (diff) | |
download | samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.tar.xz samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.zip |
Adding upstream version 2:4.20.0+dfsg.upstream/2%4.20.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testprogs/blackbox/dbcheck.sh')
-rwxr-xr-x | testprogs/blackbox/dbcheck.sh | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/testprogs/blackbox/dbcheck.sh b/testprogs/blackbox/dbcheck.sh new file mode 100755 index 0000000..0869a2b --- /dev/null +++ b/testprogs/blackbox/dbcheck.sh @@ -0,0 +1,72 @@ +#!/bin/sh + +if [ $# -lt 1 ]; then + cat <<EOF +Usage: dbcheck.sh PREFIX +EOF + exit 1 +fi + +PREFIX="$1" +shift 1 +ARGS=$@ + +. $(dirname $0)/subunit.sh + +dbcheck() +{ + $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs $ARGS +} + +# This list of attributes can be freely extended +dbcheck_fix_one_way_links() +{ + $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_old_dn_string_component_mismatch --attrs="lastKnownParent defaultObjectCategory fromServer rIDSetReferences" --cross-ncs $ARGS +} + +# This list of attributes can be freely extended +dbcheck_fix_stale_links() +{ + $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes remove_plausible_deleted_DN_links --attrs="member msDS-NC-Replica-Locations msDS-NC-RO-Replica-Locations msDS-RevealOnDemandGroup msDS-NeverRevealGroup msDS-RevealedUsers" --cross-ncs $ARGS +} + +# This list of attributes can be freely extended +dbcheck_fix_crosspartition_backlinks() +{ + # we may not know the target yet when we receive a cross-partition link, + # which can result in a missing backlink + $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_missing_backlinks --attrs="serverReference" --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() +{ + $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs --reset-well-known-acls $ARGS +} + +reindex() +{ + $PYTHON $BINDIR/samba-tool dbcheck --reindex $ARGS +} + +fixed_attrs() +{ + $PYTHON $BINDIR/samba-tool dbcheck --attrs=cn $ARGS +} + +force_modules() +{ + $PYTHON $BINDIR/samba-tool dbcheck --force-modules $ARGS +} + +dbcheck_fix_one_way_links +dbcheck_fix_stale_links +dbcheck_fix_crosspartition_backlinks +testit "dbcheck" dbcheck || failed=$(expr $failed + 1) +testit "reindex" reindex || failed=$(expr $failed + 1) +testit "fixed_attrs" fixed_attrs || failed=$(expr $failed + 1) +testit "force_modules" force_modules || failed=$(expr $failed + 1) +testit "reset_well_known_acls" dbcheck_reset_well_known_acls || failed=$(expr $failed + 1) + +exit $failed |