0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#!/bin/sh
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# Copyright (c) 2006 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: amverifyarchive,v 1.11 2009/07/06 22:00:08 hvijay Exp $
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
b37e7426f831073464d6d2fe687b959db7ce8273Mark de Reeper# Portions Copyrighted 2011-2015 ForgeRock AS.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan FosterTOOLS_HOME="@TOOLS_HOME@"
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich RileyJAVA_HOME="@JAVA_HOME@"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich RileyCLASSPATH="@CONFIG_DIR@"
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich RileyCLASSPATH="$CLASSPATH:${unix.setup.classpath}"
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich RileyCLASSPATH="$CLASSPATH:$TOOLS_HOME/resources"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# Setup proper LD_LIBRARY_PATH if not already set
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
79943d71bcf8d4933e74f29a1b0e87f8898508cbPeter Major$JAVA_HOME/bin/java -Xms64m -Xmx256m \
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich Riley -classpath $CLASSPATH \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"bootstrap.dir=@CONFIG_DIR@" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"java.version.current=java.vm.version" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"java.version.expected=1.4+" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"am.version.current=com.iplanet.am.version" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"am.version.expected=@AM_VERSION@" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"max_conn_pool=10" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"min_conn_pool=1" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"s1is.java.util.logging.config.class=com.sun.identity.log.s1is.LogConfigReader" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"com.iplanet.services.configpath=@CONFIG_DIR@" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"com.sun.identity.configFilePath=@CONFIG_DIR@" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"com.iplanet.coreservices.configpath=@CONFIG_DIR@" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"LOG_COMPATMODE=Off" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"com.iplanet.am.logstatus=INACTIVE" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster -D"com.iplanet.am.serverMode=false" \
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster com.sun.identity.log.cli.ISArchiveVerify "$@"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster