Index: unix_installer/installer-package/install-lams.sh =================================================================== RCS file: /usr/local/cvsroot/unix_installer/installer-package/install-lams.sh,v diff -u -r1.13 -r1.14 Binary files differ Index: unix_installer/installer-package/conf/run.conf =================================================================== RCS file: /usr/local/cvsroot/unix_installer/installer-package/conf/run.conf,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unix_installer/installer-package/conf/run.conf 24 Nov 2008 22:50:22 -0000 1.1 @@ -0,0 +1,50 @@ +## -*- shell-script -*- ###################################################### +## ## +## JBoss Bootstrap Script Configuration ## +## ## +############################################################################## + +### $Id: run.conf,v 1.1 2008/11/24 22:50:22 lfoxton Exp $ + +# +# This file is optional; it may be removed if not needed. +# + +# +# Specify the maximum file descriptor limit, use "max" or "maximum" to use +# the default, as queried by the system. +# +# Defaults to "maximum" +# +#MAX_FD="maximum" + +# +# Specify the profiler configuration file to load. +# +# Default is to not load profiler configuration file. +# +#PROFILER="" + +# +# Specify the location of the Java home directory. If set then $JAVA will +# be defined to $JAVA_HOME/bin/java, else $JAVA will be "java". +# +#JAVA_HOME="/opt/java/jdk" + +# +# Specify the exact Java VM executable to use. +# +#JAVA="" + +# +# Specify options to pass to the Java VM. +# +if [ "x$JAVA_OPTS" = "x" ]; then + JAVA_OPTS="-server -Xms128m -Xmx128m" +fi + +# Sample JPDA settings for remote socket debuging +#JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y" + +# Sample JPDA settings for shared memory debugging +#JAVA_OPTS="$JAVA_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address=jboss"