backup revision a3d3ab94806056d2355afea6fe8daac41059b9fb
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke#!/bin/sh
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke#
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# CDDL HEADER START
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke#
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# The contents of this file are subject to the terms of the
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# Common Development and Distribution License, Version 1.0 only
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# (the "License"). You may not use this file except in compliance
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# with the License.
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke#
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# You can obtain a copy of the license at
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# trunk/opends/resource/legal-notices/OpenDS.LICENSE
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
2af38fde95f93562f2124ec615fba0e509c8202eDominik Luecke# See the License for the specific language governing permissions
cf04ba46b9eb495d334466e24e082e391055ca7bDominik Luecke# and limitations under the License.
2af38fde95f93562f2124ec615fba0e509c8202eDominik Luecke#
2af38fde95f93562f2124ec615fba0e509c8202eDominik Luecke# When distributing Covered Code, include this CDDL HEADER in each
2af38fde95f93562f2124ec615fba0e509c8202eDominik Luecke# file and include the License file at
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke# add the following below this CDDL HEADER, with the fields enclosed
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke# by brackets "[]" replaced with your own identifying information:
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke# Portions Copyright [yyyy] [name of copyright owner]
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke#
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke# CDDL HEADER END
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke#
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke#
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke# Copyright 2006-2008 Sun Microsystems, Inc.
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik Luecke# This script may be used to perform a backup of a Directory Server backend.
8b6e542715e576ffbf6ae13634c85f3445036e77Dominik LueckeOPENDS_INVOKE_CLASS="org.opends.server.tools.BackUpDB"
1d677cafe64269a9c961396b85b5b50c126f58d8Dominik Lueckeexport OPENDS_INVOKE_CLASS
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik LueckeSCRIPT_NAME="backup"
85f112f807210b70172aab985810a37dc6a85eb3Dominik Lueckeexport SCRIPT_NAME
59917a4f0a6a20f5a20bcab1f2a0a0774db56807Dominik Luecke
fcac596b16bb10f475066c323b9b1ca44db2b755Dominik LueckeSCRIPT_DIR=`dirname "${0}"`
85f112f807210b70172aab985810a37dc6a85eb3Dominik Luecke"${SCRIPT_DIR}/../lib/_mixed-script.sh" "${@}"
1fb884d0af74a8b911f5de1cf2b68e33676c088bDominik Luecke