gitlabhq/lib/tasks/sidekiq.rake

21 lines
733 B
Ruby
Raw Normal View History

namespace :sidekiq do
desc "GITLAB | Stop sidekiq"
task :stop do
2013-02-27 19:40:01 +01:00
system "bundle exec sidekiqctl stop #{pidfile}"
end
desc "GITLAB | Start sidekiq"
task :start do
2013-02-27 19:40:01 +01:00
system "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 &"
end
2013-02-27 19:40:01 +01:00
desc "GITLAB | Start sidekiq with launchd on Mac OS X"
task :launchd do
2013-02-27 19:40:01 +01:00
system "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-02-27 19:40:01 +01:00
def pidfile
2013-01-09 23:56:47 +01:00
Rails.root.join("tmp", "pids", "sidekiq.pid")
end
end