2013-01-09 06:44:05 +01:00
|
|
|
namespace :sidekiq do
|
|
|
|
desc "GITLAB | Stop sidekiq"
|
|
|
|
task :stop do
|
|
|
|
run "bundle exec sidekiqctl stop #{pidfile}"
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "GITLAB | Start sidekiq"
|
|
|
|
task :start do
|
2013-02-11 18:16:59 +01:00
|
|
|
run "nohup bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1 &"
|
2013-01-09 06:44:05 +01:00
|
|
|
end
|
2013-02-12 16:01:55 +01:00
|
|
|
|
|
|
|
desc "GITLAB | Start sidekiq with launchd on Mac OS X"
|
|
|
|
task :launchd do
|
|
|
|
run "bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1"
|
|
|
|
end
|
|
|
|
|
2013-01-09 06:44:05 +01:00
|
|
|
def pidfile
|
2013-01-09 23:56:47 +01:00
|
|
|
Rails.root.join("tmp", "pids", "sidekiq.pid")
|
2013-01-09 06:44:05 +01:00
|
|
|
end
|
|
|
|
end
|