verify-index revision f71f7a61dec7c9089378d14493ad564a1dedf0b5
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#!/bin/sh
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# CDDL HEADER START
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# The contents of this file are subject to the terms of the
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# Common Development and Distribution License, Version 1.0 only
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# (the "License"). You may not use this file except in compliance
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# with the License.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# You can obtain a copy of the license at
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# trunk/opends/resource/legal-notices/OpenDS.LICENSE
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# See the License for the specific language governing permissions
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# and limitations under the License.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# When distributing Covered Code, include this CDDL HEADER in each
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# file and include the License file at
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# add the following below this CDDL HEADER, with the fields enclosed
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# by brackets "[]" replaced with your own identifying information:
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# Portions Copyright [yyyy] [name of copyright owner]
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# CDDL HEADER END
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync#
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# Portions Copyright 2006-2007 Sun Microsystems, Inc.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# This script may be used to perform validation on the contents of a Directory
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync# Server backend storing its data in the Berkeley DB Java Edition.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncOPENDS_INVOKE_CLASS="org.opends.server.tools.VerifyIndex"
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncexport OPENDS_INVOKE_CLASS
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncSCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=verify-index"
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncexport SCRIPT_NAME_ARG
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncSCRIPT_DIR=`dirname "${0}"`
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync"${SCRIPT_DIR}/_server-script.sh" "${@}"
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync