0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#!/bin/sh
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster# Copyright (c) 2008 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: ssopatch,v 1.2 2009/03/10 23:54:14 veiming Exp $
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster#
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan FosterPATCH_HOME="`which $0`"
0a99555401a033704f1f171baab6db11fb5528f2Allan FosterTOOLS_HOME="`dirname ${PATCH_HOME}`"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster${JAVA_HOME}/bin/java -Xms256m -Xmx512m -cp "${TOOLS_HOME}/lib/ssopatch.jar:${TOOLS_HOME}/lib/ssomanifest.jar:${TOOLS_HOME}/lib/amadm_setup.jar:${TOOLS_HOME}/resources" com.sun.identity.tools.patch.Patch "$@"