Commit 74eedc02eced5a21b19cd070717056e310210b75
1 parent
0b8b4679
Exists in
master
and in
17 other branches
Put quotes around the Postgresql database password
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
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 | ... | ... |