0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#!/bin/sh
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# Copyright (c) 2005 Sun Microsystems Inc. All Rights Reserved
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# The contents of this file are subject to the terms
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# of the Common Development and Distribution License
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# (the License). You may not use this file except in
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# compliance with the License.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# You can obtain a copy of the License at
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# https://opensso.dev.java.net/public/CDDLv1.0.html or
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# opensso/legal/CDDLv1.0.txt
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# See the License for the specific language governing
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# permission and limitations under the License.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# When distributing Covered Code, include this CDDL
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# Header Notice in each file and include the License file
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# at opensso/legal/CDDLv1.0.txt.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# If applicable, add the following below the CDDL Header,
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# with the fields enclosed by brackets [] replaced by
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# your own identifying information:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# "Portions Copyrighted [year] [name of copyright owner]"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# $Id: ampassword,v 1.17 2009/01/28 05:34:45 ww203982 Exp $
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
b37e7426f831073464d6d2fe687b959db7ce8273Mark de Reeper# Portions Copyrighted 2010-2015 ForgeRock AS.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
505445259010027ce6eb685ea93b8a09aa67fd5dMark de ReeperJAVA_HOME="\@JAVA_HOME@"
f781d802a8636144751a19912978388cb49b5360Rich RileyTOOLS_HOME="@TOOLS_HOME@"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
f781d802a8636144751a19912978388cb49b5360Rich RileyCLASSPATH=""
f781d802a8636144751a19912978388cb49b5360Rich RileyCLASSPATH="$CLASSPATH:${unix.setup.classpath}"
f781d802a8636144751a19912978388cb49b5360Rich RileyCLASSPATH="$CLASSPATH:$TOOLS_HOME/resources"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
f781d802a8636144751a19912978388cb49b5360Rich Riley$JAVA_HOME/bin/java -Xms64m -Xmx256m -classpath $CLASSPATH \
5deb404a3d276c42ef3e4adef5e584211ab1e8ddjeff.schenk -D"bootstrap.dir=@CONFIG_DIR@" -D"java.version.current=java.vm.version" \
5deb404a3d276c42ef3e4adef5e584211ab1e8ddjeff.schenk -D"java.version.expected=1.4+" -D"am.version.current=com.iplanet.am.version" \
5deb404a3d276c42ef3e4adef5e584211ab1e8ddjeff.schenk -D"am.version.expected=@AM_VERSION@" \
5deb404a3d276c42ef3e4adef5e584211ab1e8ddjeff.schenk com.iplanet.services.ldap.ServerConfigMgr "$@"