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..
|