CAMEL-8967: Make Camel Karaf commands work with Karaf RBAC security.
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/dcdc7760 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/dcdc7760 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/dcdc7760 Branch: refs/heads/master Commit: dcdc7760ad4b382bb6e197190443e48e6ff2cdd7 Parents: aee2b57 Author: Claus Ibsen <[email protected]> Authored: Tue Jul 14 10:02:12 2015 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue Jul 14 10:02:12 2015 +0200 ---------------------------------------------------------------------- platforms/karaf/features/src/main/resources/features.xml | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/dcdc7760/platforms/karaf/features/src/main/resources/features.xml ---------------------------------------------------------------------- diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml index 959857c..94cbdf0 100644 --- a/platforms/karaf/features/src/main/resources/features.xml +++ b/platforms/karaf/features/src/main/resources/features.xml @@ -39,6 +39,10 @@ <bundle>mvn:org.apache.camel/camel-catalog/${project.version}</bundle> <bundle>mvn:org.apache.camel/camel-commands-core/${project.version}</bundle> <bundle>mvn:org.apache.camel.karaf/camel-karaf-commands/${project.version}</bundle> + <!-- allow camel to access its own mbeans for karaf commands and other needs --> + <config name="jmx.acl.org.apache.camel"> + * = * + </config> </feature> <feature name='camel-catalog' version='${project.version}' resolver='(obr)' start-level='50'> <feature version='${project.version}'>camel-core</feature>
