33 lines
928 B
Ruby
33 lines
928 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
|
|
# ps = 'ps aux | grep resque | grep -v grep'
|
|
# run "#{ps} && kill -QUIT `#{ps} | awk '{ print $2 }'` || echo 'Workers already stopped!'"
|
|
run "cd #{fetch :current_path} && #{rails_env} bundle exec rake resque:stop_workers"
|
|
end
|
|
|
|
def start_workers
|
|
run "cd #{fetch :current_path} && COUNT=#{workers_count} QUEUE=fork_import,hook,clone_build,notification,iso_worker_observer,rpm_worker_observer,publish_build_list_container_observer #{rails_env} BACKGROUND=yes bundle exec rake resque:workers"
|
|
end
|
|
end
|
|
end
|