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 51 sshkit issues
Sort by recently updated
recently updated
newest added

Using sshkit 1.11.1 via Capistrano 3.4.0. I'd like to do an `execute`, but get streaming output to the console as it appears from the execute. For me, `execute` seems to...

discuss!

Hi, I'm currently unable to use the ProxyJump config with sshkit, due to this issue: https://github.com/net-ssh/net-ssh/issues/587 sshkit will override Net::SSH.default_files here: https://github.com/capistrano/sshkit/blob/158c2867071e015a117e188d1a0ee7b579c9b24e/lib/sshkit/backends/netssh.rb#L13 By the way, is there any reasons to...

I'm having a lot of trouble using the `as` syntax. I realize this is more of a support request than a bug report, but the results of this might go...

There have been multiple requests to set an upper limit on the number of `git` operations that are executed in parallel in the default Capistrano git strategy. Similarly, users are...

new feature
discuss!

Showing the same error in three different ways seems redundant. Is it possible to collapse into one? The second one looks most relevant. ``` cap aborted! SSHKit::Runner::ExecuteError: Exception while executing...

new feature

I have a bit of an issue when trying to use capistrano/sshkit. Our user account is setup to use tsch for legacy reasons. I can try to talk to them...

new feature
help wanted

transfer_summarizer produces a warning for files of size zero: ``` Error calculating percentage 0/0, is foo empty? ``` My feeling is that this warning is excessive as it implies that...

confirmed bug
help wanted

I am using sshkit for parallel execution of commands on several servers. If there is an exit on one of the servers, then the exception is raised and execution on...

new feature
discuss!

From the readme, `within`/`as`/`with` should be stackable. But this scenario, that does not work as expected: ``` ruby require 'sshkit' require 'sshkit/dsl' include SSHKit::DSL # Set up a directory that...

bug?
help wanted

This pull request improves SSHKit::Host comparison in the following ways. - #equal? should test for object identity, not whether the contents are equal, as per the Ruby documentation. - #eql?...