Merge branch '6-2-stable' of dev.gitlab.org:gitlab/gitlabhq

This commit is contained in:
Dmitriy Zaporozhets
2013-11-04 14:26:42 +02:00
4 changed files with 7 additions and 4 deletions
+1
View File
@@ -7,6 +7,7 @@ class SearchContext
def execute
query = params[:search]
query = Shellwords.shellescape(query) if query.present?
return result unless query.present?
+1 -1
View File
@@ -122,7 +122,7 @@ GitLab Shell is an ssh access and repository management software developed speci
cd gitlab-shell
# switch to right version
sudo -u git -H git checkout v1.7.1
sudo -u git -H git checkout v1.7.4
sudo -u git -H cp config.yml.example config.yml
+1 -1
View File
@@ -736,7 +736,7 @@ namespace :gitlab do
end
def check_gitlab_shell
required_version = Gitlab::VersionInfo.new(1, 7, 1)
required_version = Gitlab::VersionInfo.new(1, 7, 4)
current_version = Gitlab::VersionInfo.parse(gitlab_shell_version)
print "GitLab Shell version >= #{required_version} ? ... "
+4 -2
View File
@@ -4,11 +4,13 @@ namespace :sidekiq do
system "script/background_jobs stop"
end
desc "GITLAB | Start sidekiq" do
desc "GITLAB | Start sidekiq"
task :start do
system "script/background_jobs start"
end
desc 'GitLab | Restart sidekiq' do
desc 'GitLab | Restart sidekiq'
task :restart do
system "script/background_jobs restart"
end