1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/testprogs/blackbox/dbcheck.sh
Andrew Tridgell 88df1da2b2 s4-test: don't fix broken objects during dbcheck test
this leaves the database as-is, which makes it easier to examine the
problem
2011-07-21 11:44:33 +10:00

27 lines
307 B
Bash
Executable File

#!/bin/sh
if [ $# -lt 1 ]; then
cat <<EOF
Usage: dbcheck.sh PREFIX
EOF
exit 1;
fi
PREFIX="$1"
shift 1
. `dirname $0`/subunit.sh
dbcheck() {
$BINDIR/samba-tool dbcheck --cross-ncs $@
}
reindex() {
$BINDIR/samba-tool dbcheck --reindex
}
testit "dbcheck" dbcheck
testit "reindex" reindex
exit $failed