]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
testprogs: Reformat dbcheck.sh
authorAndreas Schneider <asn@samba.org>
Fri, 22 Apr 2022 13:46:04 +0000 (15:46 +0200)
committerPavel Filipensky <pfilipensky@samba.org>
Thu, 4 Aug 2022 10:11:30 +0000 (10:11 +0000)
shfmt -w -p -i 0 -fn testprogs/blackbox/dbcheck.sh

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
Autobuild-User(master): Pavel Filipensky <pfilipensky@samba.org>
Autobuild-Date(master): Thu Aug  4 10:11:30 UTC 2022 on sn-devel-184

testprogs/blackbox/dbcheck.sh

index 50af2c983d7f33c2e9c2ecf85a4bccbcb19d7b48..1f1d43269bcdef42637e5ab8a092736f23ef139c 100755 (executable)
@@ -1,34 +1,38 @@
 #!/bin/sh
 
 if [ $# -lt 1 ]; then
-cat <<EOF
+       cat <<EOF
 Usage: dbcheck.sh PREFIX
 EOF
-exit 1;
+       exit 1
 fi
 
 PREFIX="$1"
 shift 1
 ARGS=$@
 
-. `dirname $0`/subunit.sh
+. $(dirname $0)/subunit.sh
 
-dbcheck() {
+dbcheck()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs $ARGS
 }
 
 # This list of attributes can be freely extended
-dbcheck_fix_one_way_links() {
+dbcheck_fix_one_way_links()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_old_dn_string_component_mismatch --attrs="lastKnownParent defaultObjectCategory fromServer rIDSetReferences" --cross-ncs $ARGS
 }
 
 # This list of attributes can be freely extended
-dbcheck_fix_stale_links() {
+dbcheck_fix_stale_links()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes remove_plausible_deleted_DN_links --attrs="member msDS-NC-Replica-Locations msDS-NC-RO-Replica-Locations msDS-RevealOnDemandGroup msDS-NeverRevealGroup msDS-RevealedUsers" --cross-ncs $ARGS
 }
 
 # This list of attributes can be freely extended
-dbcheck_fix_crosspartition_backlinks() {
+dbcheck_fix_crosspartition_backlinks()
+{
        # we may not know the target yet when we receive a cross-partition link,
        # which can result in a missing backlink
        $PYTHON $BINDIR/samba-tool dbcheck --quiet --fix --yes fix_all_missing_backlinks --attrs="serverReference" --cross-ncs $ARGS
@@ -36,19 +40,23 @@ dbcheck_fix_crosspartition_backlinks() {
 
 # This test shows that this does not do anything to a current
 # provision (that would be a bug)
-dbcheck_reset_well_known_acls() {
+dbcheck_reset_well_known_acls()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --cross-ncs --reset-well-known-acls $ARGS
 }
 
-reindex() {
+reindex()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --reindex $ARGS
 }
 
-fixed_attrs() {
+fixed_attrs()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --attrs=cn $ARGS
 }
 
-force_modules() {
+force_modules()
+{
        $PYTHON $BINDIR/samba-tool dbcheck --force-modules $ARGS
 }