mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
22 lines
241 B
Bash
22 lines
241 B
Bash
|
#!/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 $@
|
||
|
}
|
||
|
|
||
|
testit "dbcheck" dbcheck
|
||
|
|
||
|
exit $failed
|