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,6 +24,7 @@ require 'securerandom' | ||
24 | module GitLab | 24 | module GitLab |
25 | extend(Mixlib::Config) | 25 | extend(Mixlib::Config) |
26 | 26 | ||
27 | + bootstrap Mash.new | ||
27 | postgresql Mash.new | 28 | postgresql Mash.new |
28 | node nil | 29 | node nil |
29 | 30 | ||
@@ -66,6 +67,7 @@ module GitLab | @@ -66,6 +67,7 @@ module GitLab | ||
66 | def generate_hash | 67 | def generate_hash |
67 | results = { "gitlab" => {} } | 68 | results = { "gitlab" => {} } |
68 | [ | 69 | [ |
70 | + "bootstrap", | ||
69 | "postgresql" | 71 | "postgresql" |
70 | ].each do |key| | 72 | ].each do |key| |
71 | rkey = key.gsub('_', '-') | 73 | rkey = key.gsub('_', '-') |