Git Product home page Git Product logo

Comments (2)

arcreative avatar arcreative commented on May 28, 2024 1

@mattbrictson Thanks for the info, that would definitely explain why I couldn't find the scp invocation 😄

Sounds like the easiest solution is to keep enabling scp for deployments and disabling it after--we have only one application left on Capistrano and it's going away pretty soon.

Thanks for your time, response, and support of this gem over the years!

from capistrano.

mattbrictson avatar mattbrictson commented on May 28, 2024

Good question, thanks for raising it!

Capistrano delegates all of its network operations to the sshkit gem. If I look there I see definitions for upload! and download! that seem pretty hardcoded to scp. I don't see an obvious way to swap in a different strategy.

I think that :copy_strategy might have been leftover from the pre-Capistrano 3.x days, before it was rebuilt on top of sshkit. We actually emit a warning if someone tries to set :copy_strategy, to clarify to people migrating configurations from old Capistrano versions that it is no longer supported.

I guess you might need to fork sshkit and replace the definitions of upload! and download! with an alternative that uses rsync.

Alternatively, for small text files, you could substitute scp with a shell script run over ssh, like:

execute "echo -n #{text_to_upload.shellescape} > /path/to/destination"

from capistrano.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.