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 72 end
73 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 153 user pg_user
154 154 not_if { !pg_helper.is_running? || pg_helper.database_exists?(db_name) }
155 155 retries 30
156   - notifies :run, "execute[gitlab::initialize database]", :immediately
  156 + notifies :run, "execute[initialize database]", :immediately
157 157 end
... ...