31 lines
670 B
Ruby
31 lines
670 B
Ruby
# -*- encoding : utf-8 -*-
|
|
Capistrano::Configuration.instance(:must_exist).load do
|
|
|
|
namespace :resque do
|
|
task :start do
|
|
start_workers
|
|
end
|
|
|
|
task :stop do
|
|
stop_workers
|
|
end
|
|
|
|
task :restart do
|
|
stop_workers
|
|
start_workers
|
|
end
|
|
|
|
def rails_env
|
|
fetch(:rails_env, false) ? "RAILS_ENV=#{fetch(:rails_env)}" : ''
|
|
end
|
|
|
|
def stop_workers
|
|
run "kill -QUIT `ps aux | grep resque | grep -v grep | awk '{ print $2 }'`"
|
|
end
|
|
|
|
def start_workers
|
|
run "cd #{fetch :current_path} && COUNT=#{ workers_count } QUEUE=fork_and_import #{ rails_env } BACKGROUND=yes bundle exec rake resque:workers"
|
|
end
|
|
end
|
|
end
|