You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by gn...@apache.org on 2016/11/30 10:08:53 UTC

karaf git commit: [KARAF-4841] Fix JMXSecurityTest itests

Repository: karaf
Updated Branches:
  refs/heads/master 416d22a97 -> 3d26b59d3


[KARAF-4841] Fix JMXSecurityTest itests

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

Branch: refs/heads/master
Commit: 3d26b59d3fa46235500ed4091ab6e71925ba192d
Parents: 416d22a
Author: Guillaume Nodet <gn...@apache.org>
Authored: Wed Nov 30 11:00:19 2016 +0100
Committer: Guillaume Nodet <gn...@apache.org>
Committed: Wed Nov 30 11:02:00 2016 +0100

----------------------------------------------------------------------
 .../src/test/java/org/apache/karaf/itests/JMXSecurityTest.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/3d26b59d/itests/src/test/java/org/apache/karaf/itests/JMXSecurityTest.java
----------------------------------------------------------------------
diff --git a/itests/src/test/java/org/apache/karaf/itests/JMXSecurityTest.java b/itests/src/test/java/org/apache/karaf/itests/JMXSecurityTest.java
index 0e3b9ce..ae7b084 100644
--- a/itests/src/test/java/org/apache/karaf/itests/JMXSecurityTest.java
+++ b/itests/src/test/java/org/apache/karaf/itests/JMXSecurityTest.java
@@ -73,7 +73,9 @@ public class JMXSecurityTest extends KarafTestSupport {
             editConfigurationFilePut("etc/jmx.acl.org.apache.karaf.service.cfg", "getServices()", "admin"),
             editConfigurationFilePut("etc/jmx.acl.org.apache.karaf.service.cfg", "getServices(boolean)", "viewer"),
             editConfigurationFilePut("etc/jmx.acl.org.apache.karaf.service.cfg", "getServices(long)", "manager"),
-            editConfigurationFilePut("etc/jmx.acl.org.apache.karaf.service.cfg", "getServices(long,boolean)", "admin")));
+            editConfigurationFilePut("etc/jmx.acl.org.apache.karaf.service.cfg", "getServices(long,boolean)", "admin"),
+            editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiRegistryHost", "0.0.0.0"),
+            editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiServerHost", "0.0.0.0")));
         return options.toArray(new Option[] {});
     }