base64 revision 49050c663d9aaca6919a5a77cd739ea9ddcd9e03
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#!/bin/sh
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# CDDL HEADER START
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# The contents of this file are subject to the terms of the
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# Common Development and Distribution License, Version 1.0 only
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# (the "License"). You may not use this file except in compliance
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# with the License.
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# You can obtain a copy of the license at
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# trunk/opends/resource/legal-notices/OpenDS.LICENSE
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# See the License for the specific language governing permissions
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# and limitations under the License.
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# When distributing Covered Code, include this CDDL HEADER in each
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# file and include the License file at
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# add the following below this CDDL HEADER, with the fields enclosed
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# by brackets "[]" replaced with your own identifying information:
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# Portions Copyright [yyyy] [name of copyright owner]
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# CDDL HEADER END
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson#
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# Portions Copyright 2007 Sun Microsystems, Inc.
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson# This script may be used to display the status panel.
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilsonOPENDS_INVOKE_CLASS="org.opends.server.util.Base64"
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilsonexport OPENDS_INVOKE_CLASS
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilsonSCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=base64"
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilsonexport SCRIPT_NAME_ARG
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilsonSCRIPT_DIR=`dirname "${0}"`
49050c663d9aaca6919a5a77cd739ea9ddcd9e03neil_a_wilson"${SCRIPT_DIR}/../lib/_client-script.sh" "${@}"