Commit 44889a88140d995d878020b4567695fcaf04b28e

Authored by Jacob Vosmaer
1 parent b7e21c3f

Fix Chef syntax errors

files/gitlab-cookbooks/gitlab/recipes/default.rb
@@ -72,4 +72,4 @@ include_recipe "runit" @@ -72,4 +72,4 @@ include_recipe "runit"
72 end 72 end
73 end 73 end
74 74
75 -include_recipe "gitlab:database_migrations" 75 +include_recipe "gitlab::database_migrations"
files/gitlab-cookbooks/gitlab/recipes/postgresql.rb
@@ -153,5 +153,5 @@ execute "create #{db_name} database" do @@ -153,5 +153,5 @@ execute "create #{db_name} database" do
153 user pg_user 153 user pg_user
154 not_if { !pg_helper.is_running? || pg_helper.database_exists?(db_name) } 154 not_if { !pg_helper.is_running? || pg_helper.database_exists?(db_name) }
155 retries 30 155 retries 30
156 - notifies :run, "execute[gitlab::initialize database]", :immediately 156 + notifies :run, "execute[initialize database]", :immediately
157 end 157 end