From 93be59ee0ab5cddaad7b5d1e6d6d593acc47597c Mon Sep 17 00:00:00 2001 From: Garming Sam Date: Wed, 13 Jul 2016 13:30:35 +1200 Subject: [PATCH] dbcheck.sh: Fix the arguments supplied as $@ Signed-off-by: Garming Sam Reviewed-by: Andrew Bartlett --- testprogs/blackbox/dbcheck.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/testprogs/blackbox/dbcheck.sh b/testprogs/blackbox/dbcheck.sh index 0ce273129eb..1f951e9e89b 100755 --- a/testprogs/blackbox/dbcheck.sh +++ b/testprogs/blackbox/dbcheck.sh @@ -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