Commit 87c397f5774c4c11ba2e4c55098920c081e53670

Authored by Dmitriy Zaporozhets
1 parent 59b81a66

More fixes to gitlab:shell:install

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
lib/tasks/gitlab/shell.rake
@@ -4,7 +4,7 @@ namespace :gitlab do @@ -4,7 +4,7 @@ namespace :gitlab do
4 task :install, [:tag, :repo] => :environment do |t, args| 4 task :install, [:tag, :repo] => :environment do |t, args|
5 warn_user_is_not_gitlab 5 warn_user_is_not_gitlab
6 6
7 - args.with_defaults(tag: "v1.9.1", repo: "https://gitlab.com/gitlab-org/gitlab-shell.git") 7 + args.with_defaults(tag: "v1.9.3", repo: "https://gitlab.com/gitlab-org/gitlab-shell.git")
8 8
9 user = Settings.gitlab.user 9 user = Settings.gitlab.user
10 home_dir = Settings.gitlab.user_home 10 home_dir = Settings.gitlab.user_home
@@ -28,7 +28,7 @@ namespace :gitlab do @@ -28,7 +28,7 @@ namespace :gitlab do
28 config = { 28 config = {
29 user: user, 29 user: user,
30 gitlab_url: gitlab_url, 30 gitlab_url: gitlab_url,
31 - http_settings: {self_signed_cert: false}, 31 + http_settings: {self_signed_cert: false}.stringify_keys,
32 repos_path: repos_path, 32 repos_path: repos_path,
33 auth_file: File.join(home_dir, ".ssh", "authorized_keys"), 33 auth_file: File.join(home_dir, ".ssh", "authorized_keys"),
34 redis: { 34 redis: {
@@ -36,7 +36,7 @@ namespace :gitlab do @@ -36,7 +36,7 @@ namespace :gitlab do
36 host: redis_url.host, 36 host: redis_url.host,
37 port: redis_url.port, 37 port: redis_url.port,
38 namespace: "resque:gitlab" 38 namespace: "resque:gitlab"
39 - }, 39 + }.stringify_keys,
40 log_level: "INFO", 40 log_level: "INFO",
41 audit_usernames: false 41 audit_usernames: false
42 }.stringify_keys 42 }.stringify_keys