Hidetake Iwata
Hidetake Iwata
JSch source: http://grepcode.com/file/repo1.maven.org/maven2/com.jcraft/jsch/0.1.46/com/jcraft/jsch/JSch.java
Would you try `println ssh.version` on the plugin 2.2.0? It will show version of jsch visible from the plugin.
Since 2.6.0 `ConnectionManager` class has been rewritten thoroughly. Please try it if possible.
Would you check if `~/.ssh/known_hosts` contains the host key of EC2 instance? `reject HostKey:` means _host_ key, not _user_ key.
Any updates? The plugin supports both RSA and ECDSA type of host key.
Now the plugin supports the feature to automatically add a host key to known_hosts. Please try `knownHosts = addHostKey(file(...))`.
> So there's another bug when getting a directory, that if the directory contains nested sub-directories, 4 levels deep, the transfer fails. This critical bug has been fixed in 2.7.2....
Duplicated: https://github.com/int128/groovy-ssh/issues/74
Do you mean like below idea? For example, invoke with a custom env as follows: ``` docker run -d -e webhook=URL -e message.DockerHost=$HOSTNAME \ -v /var/run/docker.sock:/var/run/docker.sock int128/slack-docker ``` and hostname...
Great! This approach is useful for not only `shell` but `execute`, as following example: ``` groovy // executing a shell shell expect: { send 'hello server' expectOrThrow 1,'please enter password:'...