From jboss-osgi-commits at lists.jboss.org Tue Jun 2 13:54:46 2009 Content-Type: multipart/mixed; boundary="===============8795035514017020371==" MIME-Version: 1.0 From: jboss-osgi-commits at lists.jboss.org To: jboss-osgi-commits at lists.jboss.org Subject: [jboss-osgi-commits] JBoss-OSGI SVN: r89686 - in projects/jboss-osgi/trunk: spi/src/main/java/org/jboss/osgi/spi/framework and 1 other directory. Date: Tue, 02 Jun 2009 13:45:49 -0400 Message-ID: --===============8795035514017020371== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: thomas.diesler(a)jboss.com Date: 2009-06-02 13:45:49 -0400 (Tue, 02 Jun 2009) New Revision: 89686 Modified: projects/jboss-osgi/trunk/docbook/en/modules/ch02-getting-started.xml projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/framework= /OSGiBootstrap.java Log: More userguide - WIP Modified: projects/jboss-osgi/trunk/docbook/en/modules/ch02-getting-started= .xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- projects/jboss-osgi/trunk/docbook/en/modules/ch02-getting-started.xml 2= 009-06-02 17:28:29 UTC (rev 89685) +++ projects/jboss-osgi/trunk/docbook/en/modules/ch02-getting-started.xml 2= 009-06-02 17:45:49 UTC (rev 89686) @@ -97,16 +97,9 @@ JBossOSGi Runtime = If you selected 'JBossOSGi Runtime' during installation you shou= ld see a runtime folder, which contains = - the JBossOSGi Runtime distribution. + the JBossOSGi Runtime distribution. The JBossOSGi Runtime has now evol= ved into a pure OSGi container onto which services and applications = + can be deployed. = - - - = - - - = - The JBossOSGi Runtime has now evolved into a pure OSGi container= onto which services and applications can be deployed. - = The current JBossOSGi Runtime feature set includes = @@ -125,7 +118,24 @@ Microcontainer Support = - [TODO] = + The layout of the JBossOSGi Runtime after installation is simila= r to what you know from JBos= sAS. = + + + = + + + = + You can start the Runtime by running bin= /run.sh. The supported command line + options are: + = + + -b (--bind-address)The = network address various services can bind to (-b 127.0.0.1). + The default is 'localhost' + -c (--profile-name)The = runtime profile to start (-c minimal). + The default is the 'default' profile. + + = [tdiesler(a)tddell runtime]$ bin/run.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D @@ -160,6 +170,7 @@ = Minimum Profile + [TODO] = Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/fr= amework/OSGiBootstrap.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/framewor= k/OSGiBootstrap.java 2009-06-02 17:28:29 UTC (rev 89685) +++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/framewor= k/OSGiBootstrap.java 2009-06-02 17:45:49 UTC (rev 89686) @@ -65,10 +65,10 @@ private static final String OSGI_SERVER_HOME =3D "osgi.server.home"; private static final String OSGI_HOME =3D "osgi.home"; = - @Option(name =3D "-c", aliases =3D { "--server-name" }, usage =3D "Sets= the server config (-c minimal)") + @Option(name =3D "-c", aliases =3D { "--profile-name" }, usage =3D "The= runtime profile to start (-c minimal)", required =3D false) public String serverName =3D "default"; = - @Option(name =3D "-b", aliases =3D { "--bind-address" }, usage =3D "Set= s the bind address (-b 127.0.0.1)") + @Option(name =3D "-b", aliases =3D { "--bind-address" }, usage =3D "The= network address various services can bind to (-b 127.0.0.1)", required =3D= false) public String bindAdress =3D "localhost"; = private String osgiHome; --===============8795035514017020371==--