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/a6123fca Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a6123fca Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a6123fca Branch: refs/heads/camel-2.15.x Commit: a6123fca1200ff90d7bef9a2ec7a98e44969699f Parents: 269fa16 Author: Claus Ibsen <[email protected]> Authored: Tue Jul 14 10:02:12 2015 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue Jul 14 10:03:09 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/a6123fca/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 54de70f..bb8a058 100644 --- a/platforms/karaf/features/src/main/resources/features.xml +++ b/platforms/karaf/features/src/main/resources/features.xml @@ -38,6 +38,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>
