Remove the local ident authentication.
This commit is contained in:
parent
ac61ee1777
commit
06dbe8d595
|
@ -122,6 +122,11 @@
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_db' ]
|
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_db' ]
|
||||||
|
|
||||||
# No conditionals, it is needed to perform base backups when the WAL archive is active
|
# No conditionals, it is needed to perform base backups when the WAL archive is active
|
||||||
|
- name: Remove the ident authentication for the local connections
|
||||||
|
lineinfile: name={{ psql_el_conf_dir }}/pg_hba.conf regexp="^local.*?all.*?ident$" state=absent
|
||||||
|
notify: Reload postgresql
|
||||||
|
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_db' ]
|
||||||
|
|
||||||
- name: Give local access with replication privileges to the postgres user
|
- name: Give local access with replication privileges to the postgres user
|
||||||
lineinfile: name={{ psql_el_conf_dir }}/pg_hba.conf regexp="^local replication postgres peer" line="local replication postgres peer"
|
lineinfile: name={{ psql_el_conf_dir }}/pg_hba.conf regexp="^local replication postgres peer" line="local replication postgres peer"
|
||||||
notify: Reload postgresql
|
notify: Reload postgresql
|
||||||
|
|
Loading…
Reference in New Issue