Replace osgi: commands with bundle: commands (closes #4)


git-svn-id: https://svn.apache.org/repos/asf/servicemix/documentation/trunk@1708513 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/webapp/camel/troubleshooting.conf b/src/main/webapp/camel/troubleshooting.conf
index ffe3aff..403c1b8 100644
--- a/src/main/webapp/camel/troubleshooting.conf
+++ b/src/main/webapp/camel/troubleshooting.conf
@@ -5,6 +5,6 @@
 
 Solution:
 # install the additional component
-# restart the bundle using the {{osg:restart <bundle id>}} command - you can find the bundle id for your route in the output of the {{osgi:list}} command
+# restart the bundle using the {{bundle:restart <bundle id>}} command - you can find the bundle id for your route in the output of the {{bundle:list}} command
 
 Refer to [Installing additional components|/users-guide/camel/installing-components] for more information about installing additional components.
diff --git a/src/main/webapp/quickstart/activemq.conf b/src/main/webapp/quickstart/activemq.conf
index 331fa70..45b02e1 100644
--- a/src/main/webapp/quickstart/activemq.conf
+++ b/src/main/webapp/quickstart/activemq.conf
@@ -34,7 +34,7 @@
 </blueprint>
 {pygmentize}
 
-Save this file in ServiceMix' {{deploy}} folder and use {{osgi:list}} to check on the bundle status as you did with the simple Camel example.  You should now be able to put files in the {{activemq/input}} directory and see them being moved to {{activemq/output}}.
+Save this file in ServiceMix' {{deploy}} folder and use {{bundle:list}} to check on the bundle status as you did with the simple Camel example.  You should now be able to put files in the {{activemq/input}} directory and see them being moved to {{activemq/output}}.
 
 h2. Receiving the event messages
 After deploying the first XML file, you're obviously not seeing any events being logged yet.  The event messages are sent to an ActiveMQ queue, but there's nobody to receive the events yet.  Let's change that now by creating a second Blueprint XML file.
diff --git a/src/main/webapp/quickstart/camel.conf b/src/main/webapp/quickstart/camel.conf
index a4814d5..e6a3687 100644
--- a/src/main/webapp/quickstart/camel.conf
+++ b/src/main/webapp/quickstart/camel.conf
@@ -37,7 +37,7 @@
 
 h2. Using the shell to manage the route
 
-Using {{osgi:list}}, you'll notice that your XML file has been transformed into a bundle and that the Blueprint container has been created to start your Camel route.
+Using {{bundle:list}}, you'll notice that your XML file has been transformed into a bundle and that the Blueprint container has been created to start your Camel route.
 
 !/quickstart/images/camel-sample-deploy.png!
 
@@ -45,12 +45,12 @@
 
 First, stop the route with
 {pygmentize:lang=text}
-karaf@root> osgi:stop 200
+karaf@root> bundle:stop 200
 {pygmentize}
 
 The route is no longer active, so any files you copy into the {{orders/input}} folder will remain there for now.  As soon as you restart the route, the pending files will get moving again.
 
 {pygmentize:lang=text}
-karaf@root> osgi:start 200
+karaf@root> bundle:start 200
 {pygmentize}
 
diff --git a/src/main/webapp/quickstart/console.conf b/src/main/webapp/quickstart/console.conf
index 997e3b2..d90dee6 100644
--- a/src/main/webapp/quickstart/console.conf
+++ b/src/main/webapp/quickstart/console.conf
@@ -6,10 +6,10 @@
 
 When ServiceMix is first started, a whole set of bundles providing the core features for the product are being installed.  Let's use the command console to find out more about them...
 
-The {{osgi:list}} command can be used to get a list of all bundles currently installed.  Enter this
+The {{bundle:list}} command can be used to get a list of all bundles currently installed.  Enter this
 
 {pygmentize:lang=text}
-karaf@root> osgi:list
+karaf@root> bundle:list
 {pygmentize}
 
 This is what the output looks like if you run this on your ServiceMix instance.
@@ -26,7 +26,7 @@
 If you're looking for something specific in the list, you can use unix-like pipes and utilities to help you.  An example: to look for all Camel related bundles...
 
 {pygmentize:lang=text}
-karaf@root> osgi:list | grep camel
+karaf@root> bundle:list | grep camel
 {pygmentize}
 
 !/quickstart/images/osgi-list-pipegrep.png|title=osgi:list!
@@ -66,4 +66,4 @@
 
 h2. ...and there's a lot more
 
-These are obviously just a few examples of what the command shell is all about.  There are a lot more commands in the shell to help you deploy, monitor, manage and troubleshoot the applications you're building with ServiceMix.
\ No newline at end of file
+These are obviously just a few examples of what the command shell is all about.  There are a lot more commands in the shell to help you deploy, monitor, manage and troubleshoot the applications you're building with ServiceMix.