dsreplication revision d25372dc8e65a9ed019a88fdf659ca61313f1b31
b222ecd1c25197c2a04d0230504153ad6a62a666Michael Graff#!/bin/sh
b222ecd1c25197c2a04d0230504153ad6a62a666Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# CDDL HEADER START
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# The contents of this file are subject to the terms of the
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# Common Development and Distribution License, Version 1.0 only
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# (the "License"). You may not use this file except in compliance
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# with the License.
b222ecd1c25197c2a04d0230504153ad6a62a666Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# You can obtain a copy of the license at
b222ecd1c25197c2a04d0230504153ad6a62a666Michael Graff# trunk/opends/resource/legal-notices/OpenDS.LICENSE
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# See the License for the specific language governing permissions
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# and limitations under the License.
b222ecd1c25197c2a04d0230504153ad6a62a666Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# When distributing Covered Code, include this CDDL HEADER in each
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# file and include the License file at
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# add the following below this CDDL HEADER, with the fields enclosed
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# by brackets "[]" replaced with your own identifying information:
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# Portions Copyright [yyyy] [name of copyright owner]
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# CDDL HEADER END
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff#
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# Copyright 2008 Sun Microsystems, Inc.
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff# This script may be used to perform some replication specific operations.
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael GraffOPENDS_INVOKE_CLASS="org.opends.server.tools.dsreplication.ReplicationCliMain"
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graffexport OPENDS_INVOKE_CLASS
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael GraffSCRIPT_NAME="dsreplication"
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graffexport SCRIPT_NAME
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael GraffSCRIPT_DIR=`dirname "${0}"`
9df93ea1bf53e09fd2d7f13c899817046dd04325Michael Graff"${SCRIPT_DIR}/../lib/_client-script.sh" "${@}"
83f8c56f43852bf9a9c6964eae285284b23f9d8dMichael Graff
bf647f10f68d5a2049f25435f5e3947e99e0e042Bob Halley