Re: [jclouds/jclouds-labs] Vagrant provider (#160)

2017-01-13 Thread Svet
neykov commented on this pull request. > + +Building + + +1. Vagrant bindings + * `git clone https://github.com/neykov/vagrant-java-bindings` + * `cd vagrant-java-bindings` + * `mvn clean install` + * Copy `target/vagrant-java-bindings-0.0.1-SNAPSHOT.jar` to jcloud's classpath +2.

Re: [jclouds/jclouds-labs] Vagrant provider (#160)

2017-01-13 Thread Svet
@neykov pushed 1 commit. 76e37e7 Update README -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/jclouds/jclouds-labs/pull/160/files/7129162ed18a01634c4b9244beefca889c65c4d0..76e37e704801218356f754b484fc697764782def

Re: [jclouds/jclouds-labs] Vagrant provider (#160)

2017-01-13 Thread Svet
@neykov pushed 1 commit. 7129162 Fix tests for imageId=centos/7 -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/jclouds/jclouds-labs/pull/160/files/6796d960c854f15bf1d6a642eadaa7c93fe1853d..7129162ed18a01634c4b9244beefca889c65c4d0

Re: [jclouds/jclouds-labs] Vagrant provider (#160)

2017-01-13 Thread Svet
Happy to hear that @nacx. Squashed. -- 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/160#issuecomment-272506866

Re: [jclouds/jclouds-labs] Oneandone compute api (#338)

2017-01-13 Thread Ignasi Barrera
nacx commented on this pull request. > @@ -107,7 +106,8 @@ final Server.CreateServer serverRequest = Server.CreateServer.builder() .name(name) .hardware(hardwareRequest) - .rsaKey(options.getPublicKey()) +

[jira] [Commented] (JCLOUDS-1225) Guava 21 compatibility

2017-01-13 Thread Ian Springer (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15822675#comment-15822675 ] Ian Springer commented on JCLOUDS-1225: --- In addition to Objects.ToStringHelper, there is the

[jira] [Created] (JCLOUDS-1225) Guava 21 compatibility

2017-01-13 Thread Ian Springer (JIRA)
Ian Springer created JCLOUDS-1225: - Summary: Guava 21 compatibility Key: JCLOUDS-1225 URL: https://issues.apache.org/jira/browse/JCLOUDS-1225 Project: jclouds Issue Type: Bug

[jira] [Updated] (JCLOUDS-1225) Guava 21 compatibility

2017-01-13 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Gaul updated JCLOUDS-1225: - Labels: guava (was: ) > Guava 21 compatibility > -- > >

Re: [jclouds/jclouds-labs] Oneandone compute api (#338)

2017-01-13 Thread alibazlamit
alibazlamit commented on this pull request. > + } + + @Override + public void rebootNode(String id) { + waitServerUntilAvailable.apply(getNode(id)); + api.serverApi().updateStatus(id, Server.UpdateStatus.create(Types.ServerAction.REBOOT, Types.ServerActionMethod.HARDWARE)); +

Re: [jclouds/jclouds-labs] Oneandone compute api (#338)

2017-01-13 Thread alibazlamit
@alibazlamit pushed 1 commit. 15b35ac Updated Reviewed Changes 2 -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/jclouds/jclouds-labs/pull/338/files/3b4a4cbcf009284f995502e9a8f32136d2ee46c4..15b35ac2479114429d21cef81c06578687232b9a

Re: [jclouds/jclouds-labs] Oneandone compute api (#338)

2017-01-13 Thread alibazlamit
Changed applied. Here is the full stack trace of the problem: ```Multiple entries with same value: es=https://cloudpanel-api.1and1.com/v1/ and us=https://cloudpanel-api.1and1.com/v1/ java.lang.IllegalArgumentException at

Re: [jclouds/jclouds-labs] Oneandone compute api (#338)

2017-01-13 Thread alibazlamit
alibazlamit commented on this pull request. > + + //if no private key was set use the set/generated password. + if (privateKey == null) { + serverCredentials = LoginCredentials.builder() + .user(loginUser) + .password(password) +