Skip to content

Commit

Permalink
Merge pull request #39 from mouchymouchy/main
Browse files Browse the repository at this point in the history
Fix crash if pg password starting with bracket
  • Loading branch information
ghoneycutt authored Dec 3, 2024
2 parents 87e8ba2 + 01941cb commit 027c75e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/postgresql.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ postgresql:
authentication:
superuser:
username: <%= @superuser_username %>
password: <%= @superuser_password %>
password: '<%= @superuser_password %>'
replication:
username: <%= @replication_username %>
password: <%= @replication_password %>
password: '<%= @replication_password %>'
<% unless @callback_on_reload == nil && @callback_on_restart == nil && @callback_on_role_change == nil && @callback_on_start == nil && @callback_on_stop == nil -%>
callbacks:
<% if @callback_on_reload != nil -%>
Expand Down

0 comments on commit 027c75e

Please sign in to comment.