summaryrefslogtreecommitdiff
path: root/testprogs/blackbox/dbcheck.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testprogs/blackbox/dbcheck.sh')
-rwxr-xr-xtestprogs/blackbox/dbcheck.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/testprogs/blackbox/dbcheck.sh b/testprogs/blackbox/dbcheck.sh
index 387ce70eefc..5691426d01b 100755
--- a/testprogs/blackbox/dbcheck.sh
+++ b/testprogs/blackbox/dbcheck.sh
@@ -14,42 +14,42 @@ ARGS=$@
. `dirname $0`/subunit.sh
dbcheck() {
- $BINDIR/samba-tool dbcheck --cross-ncs $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs $ARGS
}
# This list of attributes can be freely extended
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
+ $PYTHON $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 msDS-NC-Replica-Locations msDS-NC-RO-Replica-Locations" --cross-ncs $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes remove_plausible_deleted_DN_links --attrs="member msDS-NC-Replica-Locations msDS-NC-RO-Replica-Locations" --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
- $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_missing_backlinks --attrs="serverReference" --cross-ncs $ARGS
+ $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() {
- $BINDIR/samba-tool dbcheck --cross-ncs --reset-well-known-acls $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs --reset-well-known-acls $ARGS
}
reindex() {
- $BINDIR/samba-tool dbcheck --reindex $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --reindex $ARGS
}
fixed_attrs() {
- $BINDIR/samba-tool dbcheck --attrs=cn $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --attrs=cn $ARGS
}
force_modules() {
- $BINDIR/samba-tool dbcheck --force-modules $ARGS
+ $PYTHON $BINDIR/samba-tool dbcheck --force-modules $ARGS
}
dbcheck_fix_one_way_links