_client-script.sh revision 62713b44520556f3136c67f8716f905d9a90c463
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#!/bin/sh
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# CDDL HEADER START
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# The contents of this file are subject to the terms of the
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# Common Development and Distribution License, Version 1.0 only
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# (the "License"). You may not use this file except in compliance
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# with the License.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# You can obtain a copy of the license at
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# trunk/opends/resource/legal-notices/OpenDS.LICENSE
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# See the License for the specific language governing permissions
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# and limitations under the License.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# When distributing Covered Code, include this CDDL HEADER in each
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# file and include the License file at
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# add the following below this CDDL HEADER, with the fields enclosed
f71f7a61dec7c9089378d14493ad564a1dedf0b5neil_a_wilson# by brackets "[]" replaced with your own identifying information:
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# Portions Copyright [yyyy] [name of copyright owner]
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# CDDL HEADER END
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson#
62713b44520556f3136c67f8716f905d9a90c463matthew_swift# Copyright 2006-2010 Sun Microsystems, Inc.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# This script is used to invoke various client-side processes. It should not
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# be invoked directly by end users.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilsonif test -z "${OPENDS_INVOKE_CLASS}"
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilsonthen
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson echo "ERROR: OPENDS_INVOKE_CLASS environment variable is not set."
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson exit 1
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilsonfi
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson# Capture the current working directory so that we can change to it later.
014019918f7e3844f558f6159b8d41517254edc2lutoff# Then capture the location of this script and the Directory Server install
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson# root so that we can use them to create appropriate paths.
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsonWORKING_DIR=`pwd`
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
3cedecd5ea21cca5d9709abf320a2082cd3694e5jvergaracd "`dirname "${0}"`"
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsonSCRIPT_DIR=`pwd`
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsoncd ..
014019918f7e3844f558f6159b8d41517254edc2lutoffINSTALL_ROOT=`pwd`
014019918f7e3844f558f6159b8d41517254edc2lutoffexport INSTALL_ROOT
014019918f7e3844f558f6159b8d41517254edc2lutoff
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsoncd "${WORKING_DIR}"
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara# Set environment variables
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraSCRIPT_UTIL_CMD=set-full-environment
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraexport SCRIPT_UTIL_CMD
2f9e866dc4cbcbfdc541e27291fee3f2435485ddchebrardif [ -z "$NO_CHECK" ]
2f9e866dc4cbcbfdc541e27291fee3f2435485ddchebrardthen
2f9e866dc4cbcbfdc541e27291fee3f2435485ddchebrard NO_CHECK=1
2f9e866dc4cbcbfdc541e27291fee3f2435485ddchebrard export NO_CHECK
2f9e866dc4cbcbfdc541e27291fee3f2435485ddchebrardfi
014019918f7e3844f558f6159b8d41517254edc2lutoff. "${INSTALL_ROOT}/lib/_script-util.sh"
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraRETURN_CODE=$?
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraif test ${RETURN_CODE} -ne 0
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilsonthen
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara exit ${RETURN_CODE}
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilsonfi
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara# Launch the appropriate client utility.
62713b44520556f3136c67f8716f905d9a90c463matthew_swift"${OPENDS_JAVA_BIN}" ${OPENDS_JAVA_ARGS} ${SCRIPT_ARGS} ${SCRIPT_NAME_ARG} "${OPENDS_INVOKE_CLASS}" "${@}"