Commit 87c397f5774c4c11ba2e4c55098920c081e53670
1 parent
59b81a66
Exists in
spb-stable
and in
2 other branches
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 | 4 | task :install, [:tag, :repo] => :environment do |t, args| |
5 | 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 | 9 | user = Settings.gitlab.user |
10 | 10 | home_dir = Settings.gitlab.user_home |
... | ... | @@ -28,7 +28,7 @@ namespace :gitlab do |
28 | 28 | config = { |
29 | 29 | user: user, |
30 | 30 | gitlab_url: gitlab_url, |
31 | - http_settings: {self_signed_cert: false}, | |
31 | + http_settings: {self_signed_cert: false}.stringify_keys, | |
32 | 32 | repos_path: repos_path, |
33 | 33 | auth_file: File.join(home_dir, ".ssh", "authorized_keys"), |
34 | 34 | redis: { |
... | ... | @@ -36,7 +36,7 @@ namespace :gitlab do |
36 | 36 | host: redis_url.host, |
37 | 37 | port: redis_url.port, |
38 | 38 | namespace: "resque:gitlab" |
39 | - }, | |
39 | + }.stringify_keys, | |
40 | 40 | log_level: "INFO", |
41 | 41 | audit_usernames: false |
42 | 42 | }.stringify_keys | ... | ... |