1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

dbcheck.sh: Fix the arguments supplied as $@

Signed-off-by: Garming Sam <garming@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Garming Sam 2016-07-13 13:30:35 +12:00 committed by Garming Sam
parent 88591030ce
commit 93be59ee0a

View File

@ -9,34 +9,35 @@ fi
PREFIX="$1"
shift 1
ARGS=$@
. `dirname $0`/subunit.sh
dbcheck() {
$BINDIR/samba-tool dbcheck --cross-ncs $@
$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" --cross-ncs $@
$BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_string_dn_component_mismatch --attrs="lastKnownParent defaultObjectCategory fromServer rIDSetReferences" --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 $@
$BINDIR/samba-tool dbcheck --cross-ncs --reset-well-known-acls $ARGS
}
reindex() {
$BINDIR/samba-tool dbcheck --reindex
$BINDIR/samba-tool dbcheck --reindex $ARGS
}
fixed_attrs() {
$BINDIR/samba-tool dbcheck --attrs=cn
$BINDIR/samba-tool dbcheck --attrs=cn $ARGS
}
force_modules() {
$BINDIR/samba-tool dbcheck --force-modules
$BINDIR/samba-tool dbcheck --force-modules $ARGS
}
dbcheck_fix_one_way_links