mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
613 B
YAML
24 lines
613 B
YAML
5 years ago
|
- name: Stop services
|
||
|
become: yes
|
||
|
become_user: '{{ pg_user }}'
|
||
|
shell: '{{ pg_ctl }} -D {{ item.datadir }} -o "-p {{ item.port }}" -m immediate stop'
|
||
|
loop:
|
||
|
- { datadir: '{{ master_data_dir }}', port: '{{ master_port }}' }
|
||
|
- { datadir: '{{ replica_data_dir }}', port: '{{ replica_port }}' }
|
||
|
listen: stop postgresql
|
||
|
|
||
|
- name: Remove packages
|
||
|
apt:
|
||
|
name: '{{ packages_to_remove }}'
|
||
|
state: absent
|
||
|
listen: cleanup postgresql
|
||
|
|
||
|
- name: Remove FS objects
|
||
|
file:
|
||
|
state: absent
|
||
|
path: "{{ item }}"
|
||
|
loop:
|
||
|
- "{{ master_root_dir }}"
|
||
|
- "{{ replica_root_dir }}"
|
||
|
listen: cleanup postgresql
|