Hi all, I'm interesting to know if there is a respect of the overall xml declaration during the resolution of the feature when you install it? For example if you have the following repository and you install its feature (myFeature) does karaf install the bundle/config in the following order: 1. config 2. bundle1 3. bundle2
<features name="My Repo" xmlns=" http://karaf.apache.org/xmlns/features/v1.0.0"> <feature name='myFeature' version='1.0'> <config name="com.foo.bar"> myProperty = myValue </config> <bundle start-level="100" >mvn:toto/titi/1.0</bundle> <bundle start-level="100" >mvn:tutu/tata/1.0</bundle> </feature> </features> I have a subsidiary question. Does karaf wait to ConfigAdmin acknowledge when it install the config entry before moving to the next bundle to deploy? Thanks, Romain
