1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/testprogs/blackbox/dbcheck.sh
Andrew Tridgell bba7dc5092 dbcheck: test the --reindex option
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2011-07-21 11:44:32 +10:00

27 lines
319 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 --fix --cross-ncs --yes $@
}
reindex() {
$BINDIR/samba-tool dbcheck --reindex
}
testit "dbcheck" dbcheck
testit "reindex" reindex
exit $failed