[jbosstools-issues] [JBoss JIRA] (JBIDE-13107) Add existing ssh key: using id_rsa warns user even though id_rsa is listed in ssh private keys preferences

Andre Dietisheim (JIRA) jira-events at lists.jboss.org
Mon Nov 19 14:01:21 EST 2012


    [ https://issues.jboss.org/browse/JBIDE-13107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12735459#comment-12735459 ] 

Andre Dietisheim commented on JBIDE-13107:
------------------------------------------

Apparently both variants exists but *.ssh* prevails on newer Windows Systems. You can see this in the following codes:

{code:title=org.eclipse.jsch.internal.core.IConstants}
  public static final String SSH_DEFAULT_HOME=".ssh"; //$NON-NLS-1$
  public static final String SSH_OLD_DEFAULT_WIN32_HOME="ssh"; //$NON-NLS-1$
{code}

{code:title=org.eclipse.jsch.internal.core.PreferenceInitializer}
  static{
    SSH_HOME_DEFAULT=System.getProperty(IConstants.SYSTEM_PROPERTY_USER_HOME);
    if(SSH_HOME_DEFAULT!=null){
      SSH_OLD_WIN32_HOME_DEFAULT=SSH_HOME_DEFAULT+File.separator
          +IConstants.SSH_OLD_DEFAULT_WIN32_HOME;
      SSH_HOME_DEFAULT=SSH_HOME_DEFAULT+File.separator
          +IConstants.SSH_DEFAULT_HOME;
    }
  }
{code}
                
> Add existing ssh key: using id_rsa warns user even though id_rsa is listed in ssh private keys preferences
> ----------------------------------------------------------------------------------------------------------
>
>                 Key: JBIDE-13107
>                 URL: https://issues.jboss.org/browse/JBIDE-13107
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: openshift
>            Reporter: Max Rydahl Andersen
>            Assignee: Andre Dietisheim
>            Priority: Critical
>             Fix For: 4.0.0.CR1
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbosstools-issues mailing list