blob: ba806e53ccf1268db6d07f9d5a5bec4ac5a69ca9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace :sidekiq do
desc "GITLAB | Stop sidekiq"
task :stop do
system *%W(script/background_jobs stop)
end
desc "GITLAB | Start sidekiq"
task :start do
system *%W(script/background_jobs start)
end
desc 'GitLab | Restart sidekiq'
task :restart do
system *%W(script/background_jobs restart)
end
desc "GITLAB | Start sidekiq with launchd on Mac OS X"
task :launchd do
system *%W(script/background_jobs start_no_deamonize)
end
end
|