Index: unix_installer/installer-package/conf/run.conf =================================================================== diff -u --- unix_installer/installer-package/conf/run.conf (revision 0) +++ unix_installer/installer-package/conf/run.conf (revision bc6ff20330a87bd59cf4a86f190bcefa90e6558e) @@ -0,0 +1,50 @@ +## -*- shell-script -*- ###################################################### +## ## +## JBoss Bootstrap Script Configuration ## +## ## +############################################################################## + +### $Id$ + +# +# 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" Index: unix_installer/installer-package/install-lams.sh =================================================================== diff -u -r116732593a8fd0145a198717788bffa8166a9cac -rbc6ff20330a87bd59cf4a86f190bcefa90e6558e --- unix_installer/installer-package/install-lams.sh (.../install-lams.sh) (revision 116732593a8fd0145a198717788bffa8166a9cac) +++ unix_installer/installer-package/install-lams.sh (.../install-lams.sh) (revision bc6ff20330a87bd59cf4a86f190bcefa90e6558e) @@ -304,6 +304,9 @@ fi ln -s "$JBOSS_DIR/bin/lams2" /etc/init.d/lams2 printf "Done.\n\n" + + else + cp conf/run.conf "$JBOSS_DIR/bin" fi }