blob: 0dbb2742a44835953b2383a529285159d68d87d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: Restart pgsql systemd
systemd:
name: postgresql
state: restarted
become: yes
listen: restart pgsql
- name: Wait 10s for postgres
wait_for:
timeout: 10
delegate_to: localhost
listen: restart pgsql
|