Is there a Perl or Lua alternative to Capistrano?

前端 未结 2 1379
-上瘾入骨i
-上瘾入骨i 2021-01-04 09:08

For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I\'m not familiar

2条回答
  •  有刺的猬
    2021-01-04 09:50

    Not sure there is an exact Perl "clone" of Capistrano.

    However on CPAN there are these Make / Rake like tools:

    • App::PPBuild (no longer available on CPAN, it can be found on BackPan in EXODIST folder)
    • Pake

    And these SSH tools:

    • SSH::Command
    • SSH::RPC
    • Net::OpenSSH
    • Net::SSH
    • Net::SSH::Perl

    So combination of these should fit the bill.

    PS. Regarding your update - Net::SSH::Perl maybe useful if you don't have SSH installed on machine (this is pure Perl SSH implementation).

提交回复
热议问题