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

>Category: JBossServer
Group: v4.0
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Peter Doornbosch (pieterpeter)
>Assigned to: Scott M Stark (starksm)
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.

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

>Comment By: Scott M Stark (starksm)
Date: 2004-11-19 19:34

Message:
Logged In: YES 
user_id=175228

Fixed for 4.0.1

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

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