summaryrefslogtreecommitdiff
path: root/testprogs/blackbox/dbcheck.sh
blob: 66628b0519004282f3990b75e2c697b137d2c78f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/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 $@
}

# 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 $@
}

reindex() {
	$BINDIR/samba-tool dbcheck --reindex
}

fixed_attrs() {
	$BINDIR/samba-tool dbcheck --attrs=cn
}

force_modules() {
	$BINDIR/samba-tool dbcheck --force-modules
}

testit "dbcheck" dbcheck
testit "reindex" reindex
testit "fixed_attrs" fixed_attrs
testit "force_modules" force_modules

exit $failed