View Single Post
  #2  
Old 04-28-2009, 04:42 PM
jmackin jmackin is offline
Member
 
Join Date: Apr 2009
Posts: 22
I had the same problem. I had to wrap the namespace :deploy around my task in order for Capistrano to ommit the use of the Reaper.

Code:
namespace :deploy do
  task :restart, :roles => :app do
    sudo "#{lsws_cmd} restart"
  end
end
Hope that helps.

JM

Last edited by jmackin; 04-28-2009 at 04:51 PM..
Reply With Quote