_server-script.sh revision 3cedecd5ea21cca5d9709abf320a2082cd3694e5
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#
a3d3ab94806056d2355afea6fe8daac41059b9fbludovicp# Copyright 2006-2008 Sun Microsystems, Inc.
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# This script is used to invoke various server-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.
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson# Then capture the location of this script and the Directory Server instance
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 ..
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsonINSTANCE_ROOT=`pwd`
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsonexport INSTANCE_ROOT
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilsoncd "${WORKING_DIR}"
69de0fe5b7ed905860bef5f86937d30cc206ef7dneil_a_wilson
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara# Set environment variables
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraSCRIPT_UTIL_CMD=set-full-environment
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergaraexport SCRIPT_UTIL_CMD
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara. "${INSTANCE_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
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson# Launch the appropriate server utility.
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara"${OPENDS_JAVA_BIN}" ${OPENDS_JAVA_ARGS} ${SCRIPT_NAME_ARG} "${OPENDS_INVOKE_CLASS}" \
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson --configClass org.opends.server.extensions.ConfigFileHandler \
0cf0e19d7abb0e7659df6d191269f96b3ffe7f45neil_a_wilson --configFile "${INSTANCE_ROOT}/config/config.ldif" "${@}"