You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brooklyn.apache.org by duncangrant <gi...@git.apache.org> on 2016/06/01 14:14:24 UTC

[GitHub] brooklyn-server pull request: Use login port for ssh

GitHub user duncangrant opened a pull request:

    https://github.com/apache/brooklyn-server/pull/171

    Use login port for ssh

    Currently we assume port 22 for ssh unless a
    portforwarder has been configured.  This uses the getLoginPort
    from nodemetadata to determine the ssh port.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/duncangrant/brooklyn-server useLoginPortForSsh

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/brooklyn-server/pull/171.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #171
    
----
commit f8c4c16d2af54e171ea1b1727f7ac80c0f58a5bd
Author: Duncan Grant <du...@cloudsoftcorp.com>
Date:   2016-05-30T11:44:18Z

    Use login port for ssh
    
    Currently we assume port 22 for ssh unless a
    portforwarder has been configured.  This uses the getLoginPort
    from nodemetadata to determine the ssh port.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] brooklyn-server pull request #171: Use login port for ssh

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/brooklyn-server/pull/171


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] brooklyn-server issue #171: Use login port for ssh

Posted by aledsage <gi...@git.apache.org>.
Github user aledsage commented on the issue:

    https://github.com/apache/brooklyn-server/pull/171
  
    LGTM - I saw this in action when pairing with @duncangrant so will merge now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] brooklyn-server issue #171: Use login port for ssh

Posted by grkvlt <gi...@git.apache.org>.
Github user grkvlt commented on the issue:

    https://github.com/apache/brooklyn-server/pull/171
  
    Looks good to me, I would like to do some testing on this before I merge it, though.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] brooklyn-server pull request #171: Use login port for ssh

Posted by neykov <gi...@git.apache.org>.
Github user neykov commented on a diff in the pull request:

    https://github.com/apache/brooklyn-server/pull/171#discussion_r65882584
  
    --- Diff: locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/JcloudsLocation.java ---
    @@ -2896,7 +2896,7 @@ protected LoginCredentials waitForSshable(final ComputeService computeService, f
             String user = (users.size() == 1) ? Iterables.getOnlyElement(users) : "{" + Joiner.on(",").join(users) + "}";
             String vmIp = hostAndPortOverride.isPresent() ? hostAndPortOverride.get().getHostText() : getFirstReachableAddress(node, setup);
             if (vmIp==null) LOG.warn("Unable to extract IP for "+node+" ("+setup.getDescription()+"): subsequent connection attempt will likely fail");
    -        int vmPort = hostAndPortOverride.isPresent() ? hostAndPortOverride.get().getPortOrDefault(22) : 22;
    +        int vmPort = hostAndPortOverride.isPresent() ? hostAndPortOverride.get().getPortOrDefault(22) : getLoginPortOrDefault(node, 22);
    --- End diff --
    
    Shouldn't `22` in `getPortOrDefault(22)` be replaced as well?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---