Author: sebb
Date: Thu Dec 1 23:07:49 2011
New Revision: 1209297
URL: http://svn.apache.org/viewvc?rev=1209297&view=rev
Log:
DAEMON-230 Procrun Documentation
JvmOption => JvmOptions
Modified:
commons/proper/daemon/branches/1.0.x/src/site/xdoc/procrun.xml
Modified: commons/proper/daemon/branches/1.0.x/src/site/xdoc/procrun.xml
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/site/xdoc/procrun.xml?rev=1209297&r1=1209296&r2=1209297&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/src/site/xdoc/procrun.xml (original)
+++ commons/proper/daemon/branches/1.0.x/src/site/xdoc/procrun.xml Thu Dec 1
23:07:49 2011
@@ -203,18 +203,18 @@
<p> as a command line parameter.</p>
<p>
If a parameter is repeated, then normally the last value takes precedence.
-However some parameters can take multiple values - for example StartParams and
JvmOption.
+However some parameters can take multiple values - for example StartParams and
JvmOptions.
If these parameters are prefixed with <b>++</b>, then the value will be
appended to the existing value.
For example:
<source>
---Startup=manual --Startup=auto --JvmOption=-Done=1 ++JvmOption=-Dtwo=2
+--Startup=manual --Startup=auto --JvmOptions=-Done=1 ++JvmOptions=-Dtwo=2
</source>
will result in the following values being used:
<source>
Startup:
auto
-JvmOption:
+JvmOptions:
-Done=1
-Dtwo=2
</source>