matrix-docker-ansible-deploy/roles/matrix-etherpad/tasks/setup_uninstall.yml

37 lines
1.1 KiB
YAML
Raw Normal View History

2021-01-20 23:06:35 +00:00
---
- name: Check existence of matrix-etherpad service
2022-07-18 08:22:05 +00:00
ansible.builtin.stat:
2021-01-20 23:06:35 +00:00
path: "{{ matrix_systemd_path }}/matrix-etherpad.service"
register: matrix_etherpad_service_stat
- name: Ensure matrix-etherpad is stopped
ansible.builtin.service:
2021-01-20 23:06:35 +00:00
name: matrix-etherpad
state: stopped
enabled: false
daemon_reload: true
2021-01-20 23:06:35 +00:00
register: stopping_result
2022-07-18 08:22:05 +00:00
when: "matrix_etherpad_service_stat.stat.exists | bool"
2021-01-20 23:06:35 +00:00
- name: Ensure matrix-etherpad.service doesn't exist
ansible.builtin.file:
2021-01-20 23:06:35 +00:00
path: "{{ matrix_systemd_path }}/matrix-etherpad.service"
state: absent
2022-07-18 08:22:05 +00:00
when: "matrix_etherpad_service_stat.stat.exists | bool"
2021-01-20 23:06:35 +00:00
- name: Ensure systemd reloaded after matrix-etherpad.service removal
ansible.builtin.service:
daemon_reload: true
2022-07-18 08:22:05 +00:00
when: "matrix_etherpad_service_stat.stat.exists | bool"
2021-01-20 23:06:35 +00:00
- name: Ensure Etherpad base directory doesn't exist
ansible.builtin.file:
2021-01-20 23:06:35 +00:00
path: "{{ matrix_etherpad_base_path }}"
state: absent
2021-01-30 09:37:08 +00:00
- name: Ensure Etherpad Docker image doesn't exist
2021-01-20 23:06:35 +00:00
docker_image:
name: "{{ matrix_etherpad_docker_image }}"
state: absent