jdnssec-tools/bin/jdnssec-signzone
David Blacka 633ab040b3 modify shell wrapper to work with the build area jdnssec-tools.jar file.
This makes them work from the build area, but they will not track
development changes unless the jar is rebuilt.

git-svn-id: https://svn.verisignlabs.com/jdnssec/tools/trunk@75 4cbd57fe-54e5-0310-bd9a-f30fe5ea5e6e
2006-05-24 22:18:42 +00:00

15 lines
290 B
Bash
Executable File

#! /bin/sh
thisdir=`dirname $0`
basedir=`cd $thisdir/..; pwd`
ulimit -n `ulimit -H -n`
# set the classpath
for i in $basedir/lib/*.jar $basedir/lib/*.zip $basedir/build/lib/*.jar; do
CLASSPATH="$CLASSPATH":"$i"
done
export CLASSPATH
exec java com.verisignlabs.dnssec.cl.SignZone "$@"