Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/postgres.10.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ run:

# allow all to connect in with md5 auth (IPv6)
- replace:
filename: "/etc/postgresql/13/main/pg_hba.conf"
filename: "/etc/postgresql/10/main/pg_hba.conf"
from: /^host.*all.*all.*::1\/128.*$/
to: "host all all ::/0 md5"

Expand Down
2 changes: 1 addition & 1 deletion templates/postgres.12.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ run:

# allow all to connect in with md5 auth (IPv6)
- replace:
filename: "/etc/postgresql/13/main/pg_hba.conf"
filename: "/etc/postgresql/12/main/pg_hba.conf"
from: /^host.*all.*all.*::1\/128.*$/
to: "host all all ::/0 md5"

Expand Down
2 changes: 1 addition & 1 deletion templates/postgres.9.5.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ run:

# allow all to connect in with md5 auth (IPv6)
- replace:
filename: "/etc/postgresql/13/main/pg_hba.conf"
filename: "/etc/postgresql/9.5/main/pg_hba.conf"
from: /^host.*all.*all.*::1\/128.*$/
to: "host all all ::/0 md5"

Expand Down