fix(podman_link): workaround for pg auth check before init
Some checks failed
Ansible Lint Check / lint (push) Failing after 44s

See: #13
This commit is contained in:
Iain Learmonth 2025-12-22 11:15:04 +00:00
parent 71aac76d76
commit 58a7af2820

View file

@ -148,6 +148,7 @@
line: "local\tall\tall\tscram-sha-256" line: "local\tall\tall\tscram-sha-256"
state: present state: present
create: false create: false
failed_when: false # TODO: only run when file already exists (#13)
become: true become: true
with_items: with_items:
- postgresql - postgresql
@ -163,6 +164,7 @@
line: "local\treplication\tall\tscram-sha-256" line: "local\treplication\tall\tscram-sha-256"
state: present state: present
create: false create: false
failed_when: false # TODO: only run when file already exists (#13)
become: true become: true
with_items: with_items:
- postgresql - postgresql