Commit 7cec18d4352d1a8d2a301c591bb779a303414f3e
1 parent
1feb98d2
Exists in
master
and in
17 other branches
Bring back the bootstrap attribute
Showing
2 changed files
with
4 additions
and
0 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/attributes/default.rb
files/gitlab-cookbooks/gitlab/libraries/chef_server.rb
... | ... | @@ -24,6 +24,7 @@ require 'securerandom' |
24 | 24 | module GitLab |
25 | 25 | extend(Mixlib::Config) |
26 | 26 | |
27 | + bootstrap Mash.new | |
27 | 28 | postgresql Mash.new |
28 | 29 | node nil |
29 | 30 | |
... | ... | @@ -66,6 +67,7 @@ module GitLab |
66 | 67 | def generate_hash |
67 | 68 | results = { "gitlab" => {} } |
68 | 69 | [ |
70 | + "bootstrap", | |
69 | 71 | "postgresql" |
70 | 72 | ].each do |key| |
71 | 73 | rkey = key.gsub('_', '-') | ... | ... |