2022-11-24 13:19:42 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-dendrite service
|
|
|
|
ansible.builtin.stat:
|
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dendrite.service"
|
|
|
|
register: matrix_dendrite_service_stat
|
|
|
|
|
|
|
|
- when: matrix_dendrite_service_stat.stat.exists | bool
|
|
|
|
block:
|
|
|
|
- name: Ensure matrix-dendrite is stopped
|
|
|
|
ansible.builtin.service:
|
|
|
|
name: matrix-dendrite
|
|
|
|
state: stopped
|
|
|
|
daemon_reload: true
|
|
|
|
|
2022-11-27 07:41:03 +00:00
|
|
|
- name: Ensure Dendrite paths don't exist
|
2022-11-24 13:19:42 +00:00
|
|
|
ansible.builtin.file:
|
2022-11-27 07:41:03 +00:00
|
|
|
path: "{{ item }}"
|
2022-11-24 13:19:42 +00:00
|
|
|
state: absent
|
2022-11-27 07:41:03 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ devture_systemd_docker_base_systemd_path }}/matrix-dendrite.service"
|
|
|
|
- "{{ matrix_dendrite_bin_path }}"
|