summaryrefslogtreecommitdiff
path: root/lib/tasks/sidekiq.rake
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-05-27 17:14:41 +0200
committerMarin Jankovski <marin@gitlab.com>2014-05-27 17:14:41 +0200
commit2341cefd6fa2811a1af41f2068554738d7eebfc4 (patch)
tree807a376257151323a203c39dd2ff08b23e29a21e /lib/tasks/sidekiq.rake
parentcb4b504b26a269ba6ebb3fee165296a80d962c69 (diff)
downloadgitlab-ce-2341cefd6fa2811a1af41f2068554738d7eebfc4.tar.gz
Move from script to bin directory.
Diffstat (limited to 'lib/tasks/sidekiq.rake')
-rw-r--r--lib/tasks/sidekiq.rake8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tasks/sidekiq.rake b/lib/tasks/sidekiq.rake
index ba806e53ccf..e4bd6545755 100644
--- a/lib/tasks/sidekiq.rake
+++ b/lib/tasks/sidekiq.rake
@@ -1,21 +1,21 @@
namespace :sidekiq do
desc "GITLAB | Stop sidekiq"
task :stop do
- system *%W(script/background_jobs stop)
+ system *%W(bin/background_jobs stop)
end
desc "GITLAB | Start sidekiq"
task :start do
- system *%W(script/background_jobs start)
+ system *%W(bin/background_jobs start)
end
desc 'GitLab | Restart sidekiq'
task :restart do
- system *%W(script/background_jobs restart)
+ system *%W(bin/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)
+ system *%W(bin/background_jobs start_no_deamonize)
end
end