| #!/bin/bash | |
| # make sure we have JAVA_HOME set | |
| if [ -z "$JAVA_HOME" ] | |
| then | |
| echo The JAVA_HOME environment variable is not defined | |
| exit 1 | |
| fi | |
| CLASSPATH= | |
| # Create the classpath for bootstrapping the Server from all the JARs in lib | |
| for file in $KERNEL_HOME/lib/* | |
| do | |
| if [[ $file == *.jar ]] | |
| then | |
| CLASSPATH=$CLASSPATH:$KERNEL_HOME/lib/${file##*/} | |
| fi | |
| done |