Repository: jclouds-karaf
Updated Branches:
  refs/heads/master 2d280b5a1 -> e19f3476a


Fix Chef commands


Project: http://git-wip-us.apache.org/repos/asf/jclouds-karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds-karaf/commit/e19f3476
Tree: http://git-wip-us.apache.org/repos/asf/jclouds-karaf/tree/e19f3476
Diff: http://git-wip-us.apache.org/repos/asf/jclouds-karaf/diff/e19f3476

Branch: refs/heads/master
Commit: e19f3476a25691b9fb1f7fb3ea199ae4fc3ca028
Parents: 2d280b5
Author: Ignasi Barrera <[email protected]>
Authored: Fri May 12 08:59:09 2017 +0200
Committer: Ignasi Barrera <[email protected]>
Committed: Fri May 12 08:59:09 2017 +0200

----------------------------------------------------------------------
 .../OSGI-INF/blueprint/jclouds-chef-commands.xml    | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds-karaf/blob/e19f3476/chef/commands/src/main/resources/OSGI-INF/blueprint/jclouds-chef-commands.xml
----------------------------------------------------------------------
diff --git 
a/chef/commands/src/main/resources/OSGI-INF/blueprint/jclouds-chef-commands.xml 
b/chef/commands/src/main/resources/OSGI-INF/blueprint/jclouds-chef-commands.xml
index 661a03d..e4c8edf 100644
--- 
a/chef/commands/src/main/resources/OSGI-INF/blueprint/jclouds-chef-commands.xml
+++ 
b/chef/commands/src/main/resources/OSGI-INF/blueprint/jclouds-chef-commands.xml
@@ -15,18 +15,16 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 -->
 
-<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";
-           
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0";>
-
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
 
     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0";>
-        <command name="chef/service-list">
+        <command>
             <action 
class="org.jclouds.karaf.chef.commands.ChefServiceListCommand">
                 <property name="chefServices" ref="chefServices"/>
                 <property name="cacheProvider" ref="cacheProvider"/>
             </action>
         </command>
-        <command name="chef/service-create">
+        <command>
             <action 
class="org.jclouds.karaf.chef.commands.ChefServiceCreateCommand">
                 <property name="bundleContext" ref="blueprintBundleContext"/>
                 <property name="configAdmin" ref="configAdmin"/>
@@ -35,7 +33,7 @@ limitations under the License.
                 <entry key="--api" value-ref="availableChefApiCompleter"/>
             </optional-completers>
         </command>
-        <command name="chef/service-destroy">
+        <command>
             <action 
class="org.jclouds.karaf.chef.commands.ChefServiceDestroyCommand">
                 <property name="configAdmin" ref="configAdmin"/>
             </action>
@@ -44,7 +42,7 @@ limitations under the License.
                 <null/>
             </completers>
         </command>
-        <command name="chef/cookbook-list">
+        <command>
             <action 
class="org.jclouds.karaf.chef.commands.ChefCookbookListCommand">
                 <property name="chefServices" ref="chefServices"/>
                 <property name="cacheProvider" ref="cacheProvider"/>
@@ -56,7 +54,7 @@ limitations under the License.
                 <null/>
             </completers>
         </command>
-        <command name="chef/node-bootstrap">
+        <command>
             <action class="org.jclouds.karaf.chef.commands.ChefNodeBootstrap">
                 <property name="computeServices" ref="computeServices"/>
                 <property name="chefServices" ref="chefServices"/>
@@ -74,7 +72,7 @@ limitations under the License.
                 <entry key="--chef-name" value-ref="chefContextNameCompleter"/>
             </optional-completers>
         </command>
-        <command name="chef/group-bootstrap">
+        <command>
             <action class="org.jclouds.karaf.chef.commands.ChefGroupBootStrap">
                 <property name="computeServices" ref="computeServices"/>
                 <property name="chefServices" ref="chefServices"/>

Reply via email to