Bugs item #1068984, was opened at 2004-11-18 21:04
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1068984&group_id=22866

Category: None
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Peter Doornbosch (pieterpeter)
Assigned to: Nobody/Anonymous (nobody)
Summary: run.conf (called by run.sh) resets JAVA_OPTS environment var

Initial Comment:
The run.conf file, called by the run.sh shell script,
resets the JAVA_OPTS environment variable, which
frustrates the user trying to pass non-standard options.

This is the fragment from the run.conf:
#
# Specify options to pass to the Java VM.
#
JAVA_OPTS="-server -Xms128m -Xmx128m"
# Sample JDK 1.3.1 JPDA settings

In 3.2.6 this line was a still a comment.

The fix is trivial of course:

if [ "x$JAVA_OPTS" = "x" ]; then
    JAVA_OPTS="-server -Xms128m -Xmx128m"
fi

or make it a comment again.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1068984&group_id=22866


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to