@nacx if you came across this `INFO: << configured node(1821134a-fa51-4d3a-8a3d-da1e891dc4d2/fc621963-76bc-495f-8585-afd0885d33a9) with bash: java: command not found and jetty head: cannot open '/usr/local/jetty/VERSION.txt' for reading: No such file or directory in 27s ` `could not connect to any ip address port 8080 on node bash: line 0: cd: /usr/local/jetty: No such file or directory` You can view, comment on, or merge this pull request online at:
https://github.com/jclouds/jclouds-labs/pull/292 -- Commit Summary -- * Profitbricks REST - LAN API * pb-ipblock-api * pb-compute-api * pb-compute-api * Merge branch 'master' of https://github.com/jclouds/jclouds-labs into pb-compute-api -- File Changes -- M profitbricks-rest/pom.xml (19) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ProfitBricksApi.java (41) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ProfitBricksApiMetadata.java (7) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ProfitBricksProviderMetadata.java (134) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/ProfitBricksComputeServiceAdapter.java (568) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/concurrent/ProvisioningJob.java (62) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/concurrent/ProvisioningManager.java (87) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/config/ProfitBricksComputeServiceContextModule.java (333) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/DataCenterToLocation.java (52) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/LocationToLocation.java (46) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/ProvisionableToImage.java (209) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/ServerInDataCenterToNodeMetadata.java (177) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/ServerToNodeMetadata.java (169) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/compute/function/VolumeToVolume.java (44) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/config/ProfitBricksComputeProperties.java (21) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/DataCenter.java (2) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Firewall.java (4) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Image.java (2) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/IpBlock.java (104) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Location.java (11) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Server.java (449) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Snapshot.java (2) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/VolumeType.java (8) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/zonescoped/DataCenterAndId.java (92) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/zonescoped/ServerInDataCenter.java (49) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/features/IpBlockApi.java (89) A profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ids/NicRef.java (34) M profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/util/ApiPredicatesModule.java (18) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/BaseTest.java (948) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/ProfitBricksComputeServiceLiveTest.java (156) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/ProfitBricksTemplateBuilderLiveTest.java (37) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/concurrent/ProvisioningManagerTest.java (118) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/config/StatusPredicateTest.java (122) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/function/DataCenterToLocationTest.java (76) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/function/LocationToLocationTest.java (62) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/function/ProvisionableToImageTest.java (203) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/function/ServerInDataCenterToNodeMetadataTest.java (142) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/compute/function/VolumeToVolumeTest.java (59) M profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/DataCenterApiLiveTest.java (2) M profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/DataCenterApiMockTest.java (3) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/IpBlockApiMockTest.java (150) A profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/IpblockApiLiveTest.java (96) M profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/ServerApiLiveTest.java (3) M profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/internal/BaseProfitBricksLiveTest.java (8) A profitbricks-rest/src/test/resources/compute/datacenter.json (123) A profitbricks-rest/src/test/resources/compute/image.json (32) A profitbricks-rest/src/test/resources/compute/image1.json (32) A profitbricks-rest/src/test/resources/compute/image2.json (32) A profitbricks-rest/src/test/resources/compute/image3.json (32) A profitbricks-rest/src/test/resources/compute/predicate/datacenter-inprocess.json (41) A profitbricks-rest/src/test/resources/compute/predicate/datacenter.json (41) A profitbricks-rest/src/test/resources/compute/predicate/server-inprocess.json (173) A profitbricks-rest/src/test/resources/compute/predicate/server.json (173) A profitbricks-rest/src/test/resources/compute/predicate/snapshot-inprocess.json (30) A profitbricks-rest/src/test/resources/compute/predicate/snapshot.json (30) A profitbricks-rest/src/test/resources/compute/server.json (140) A profitbricks-rest/src/test/resources/compute/snapshot1.json (30) A profitbricks-rest/src/test/resources/compute/snapshot2.json (30) A profitbricks-rest/src/test/resources/compute/volume.json (33) A profitbricks-rest/src/test/resources/ipblock/get.json (19) A profitbricks-rest/src/test/resources/ipblock/list.depth-5.json (42) A profitbricks-rest/src/test/resources/ipblock/list.json (14) -- Patch Links -- https://github.com/jclouds/jclouds-labs/pull/292.patch https://github.com/jclouds/jclouds-labs/pull/292.diff --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/292
