Commit 74eedc02eced5a21b19cd070717056e310210b75

Authored by Jacob Vosmaer
1 parent 0b8b4679

Put quotes around the Postgresql database password

files/gitlab-cookbooks/gitlab/templates/default/database.yml.postgresql.erb
... ... @@ -7,7 +7,7 @@ production:
7 7 database: gitlabhq_production
8 8 pool: 10
9 9 username: <%= node['gitlab']['postgresql']['sql_user'] %>
10   - password: <%= node['gitlab']['postgresql']['sql_password'] %>
  10 + password: "<%= node['gitlab']['postgresql']['sql_password'] %>"
11 11 host: <%= node['gitlab']['postgresql']['listen_address'] %>
12 12 port: <%= node['gitlab']['postgresql']['port'] %>
13 13 # socket: /tmp/postgresql.sock
... ...