sshkit icon indicating copy to clipboard operation
sshkit copied to clipboard

A toolkit for deploying code and assets to servers in a repeatable, testable, reliable way.

Results 49 sshkit issues
Sort by recently updated
recently updated
newest added

When I run `bundle update` I get: ``` Fetching net-ssh 7.0.1 (was 6.1.0) Installing net-ssh 7.0.1 (was 6.1.0) Fetching net-scp 1.2.1 (was 3.0.0) Installing net-scp 1.2.1 (was 3.0.0) ``` As...

Hello, Thanks for the nice software! I am trying to use Capistrano in an environment with SSH certificate based authentication. Passwordless authentication works flawlessly if a connection is performed directly...

I feel like I'm running into a performance issue. I'm trying to connect to multiple hosts (about 50), through a single jump host. I can configure the `Net::SSH` proxy to...

When a command is mapped, (`:should_map?`), both `:with` and `:user` are invoked. In both builder methods, the environment variables specified are intended to be inherited by the subshell. Say that...

Hello, when deploying to around ~100 servers we run into following issue once in a while. Only once in a while and very randomly - for one of the servers...

previously, we only closed connections when there are no errors. when we hit errors while executing, we saw misleading zlib errors where instead it was just the ssh command failing....

We've created a [backend](https://github.com/fundingcircle/sshkit-backends-netssh_global) that allows Capistrano 3 to work with setups that require users to login in as user A, but run all commands as user B. The backend...

enhancement
need more info

``` host = SSHKit::Host.new(hostname: "localhost") SSHKit::Coordinator.new([host]).each { capture "sh", "-c", "touch 1 && echo 1" }.first.value ``` this should execute "sh -c touch\ 1 \&\&\ echo\ 1" and not `sh...