startup vs. boot features

2013-05-25 Thread Ryan Moquin
I was wondering what the difference is between startup and boot features. I was experimenting with starting up some of my features in a custom distribution as a startup feature, but I received a lot of dependency missing issues, it seemed like startup features were starting before the boot

cellar-event feature

2013-05-25 Thread Ryan Moquin
Shouldn't the cellar-event feature be installed by default with cellar or is it not necessary?

Re: startup vs. boot features

2013-05-25 Thread Christian Schneider
Hi Ryan, startup bundles are loaded in the karaf main module during the OSGi setup. They run before karaf is fully operational. So the main limitation is that they must be in the system dir of karaf and can not be loaded using full maven resolution. At this time in the boot some other karaf

Re: cellar-event feature

2013-05-25 Thread Jean-Baptiste Onofré
Hi, it's not necessary at all. I did it just for fun, it's not really used. The purpose of Cellar Event is to broadcast eventadmin between nodes (not very useful). Regards JB On 05/25/2013 04:20 PM, Ryan Moquin wrote: Shouldn't the cellar-event feature be installed by default with cellar

ConfigAdmin services

2013-05-25 Thread Ryan Moquin
I noticed Karaf has a config admin service, but so does felix. What's the difference? Is there are reason to use one over the other? Might be a dumb question, but it seems a little confusing. :)

Re: ConfigAdmin services

2013-05-25 Thread Andreas Pieber
Karaf uses the Felix configuration admn service :-) On 25 May 2013 23:00, Ryan Moquin fragility...@gmail.com wrote: I noticed Karaf has a config admin service, but so does felix. What's the difference? Is there are reason to use one over the other? Might be a dumb question, but it seems a

Re: ConfigAdmin services

2013-05-25 Thread Jean-Baptiste Onofré
Karaf uses directly Felix ConfigAdmin. No difference at all. The Karaf etc folder is scanned by Felix FileInstall (like the deploy folder) and delegated to Felix ConfigAdmin. We provide commands, MBeans, facilities on top of ConfigAdmin. Regards JB On 05/25/2013 10:59 PM, Ryan Moquin wrote: