You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2005/11/30 20:52:16 UTC

svn commit: r350030 - /geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java

Author: djencks
Date: Wed Nov 30 11:52:14 2005
New Revision: 350030

URL: http://svn.apache.org/viewcvs?rev=350030&view=rev
Log:
fix help text a bit

Modified:
    geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java

Modified: geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java?rev=350030&r1=350029&r2=350030&view=diff
==============================================================================
--- geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java (original)
+++ geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java Wed Nov 30 11:52:14 2005
@@ -101,11 +101,15 @@
         out.println();
         out.println("  "+ARGUMENT_CONFIG_OVERRIDE+" [configId] [configId] ...");
         out.println("             USE WITH CAUTION!  Overrides the configurations in\n" +
-                    "             var/config.list such that only the configurations listed on\n" +
+                    "             var/config/config.xml such that only the configurations listed on\n" +
                     "             the command line will be started.  Note that many J2EE\n" +
                     "             features depend on certain configs being started, so you\n" +
                     "             should be very careful what you omit.  Any arguments after\n" +
                     "             this are assumed to be configuration names.");
+        out.println();
+        out.println("In addition you may specify a replacement for var/config/config.xml using by setting the property\n" +
+                    "-Dorg.apache.geronimo.config.file=var/config/<my-config.xml>\n" +
+                    "This is resolved relative to the geronimo base directory.");
         out.println();
     }