aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/postgres/handlers/main.yml
blob: 5f01c1330df581eb6204a101e1b3cd30a2ce72fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Restart the postgres service
  service:
    name: '{{ postgres_daemon }}'
    state: "restarted"
  tags:
    - role::postgres

- name: Reload the postgres service
  service:
    name: '{{ postgres_daemon }}'
    state: reloaded
  tags:
    - role::postgres