2022-02-05 20:32:54 +00:00
|
|
|
---
|
|
|
|
|
2019-05-21 01:46:49 +00:00
|
|
|
- name: Check existence of matrix-synapse service
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-synapse.service"
|
2019-05-21 01:46:49 +00:00
|
|
|
register: matrix_synapse_service_stat
|
|
|
|
|
2022-11-25 15:17:54 +00:00
|
|
|
- when: matrix_synapse_service_stat.stat.exists | bool
|
|
|
|
block:
|
|
|
|
- name: Ensure matrix-synapse is stopped
|
|
|
|
ansible.builtin.service:
|
|
|
|
name: matrix-synapse
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2019-05-21 01:46:49 +00:00
|
|
|
|
2022-11-27 07:43:25 +00:00
|
|
|
- name: Ensure Synapse paths don't exist
|
2022-11-25 15:17:54 +00:00
|
|
|
ansible.builtin.file:
|
2022-11-27 07:43:25 +00:00
|
|
|
path: "{{ item }}"
|
2022-11-25 15:17:54 +00:00
|
|
|
state: absent
|
2022-11-27 07:43:25 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ devture_systemd_docker_base_systemd_path }}/matrix-synapse.service"
|
|
|
|
- "{{ matrix_synapse_bin_path }}"
|
2022-06-23 14:44:11 +00:00
|
|
|
|
2022-11-25 15:17:54 +00:00
|
|
|
- name: Ensure sample prometheus.yml for external scraping is deleted
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ matrix_synapse_base_path }}/external_prometheus.yml.example"
|
|
|
|
state: absent
|
|
|
|
when: "not matrix_synapse_metrics_proxying_enabled | bool"
|