2022-02-05 21:32:54 +01:00
|
|
|
---
|
|
|
|
|
2019-05-21 03:46:49 +02:00
|
|
|
- name: Check existence of matrix-synapse service
|
2022-07-18 10:22:05 +02:00
|
|
|
ansible.builtin.stat:
|
2020-03-24 19:27:58 +01:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-synapse.service"
|
2019-05-21 03:46:49 +02:00
|
|
|
register: matrix_synapse_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-synapse is stopped
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.service:
|
2019-05-21 03:46:49 +02:00
|
|
|
name: matrix-synapse
|
|
|
|
state: stopped
|
2022-02-05 21:32:54 +01:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2019-05-21 03:46:49 +02:00
|
|
|
register: stopping_result
|
|
|
|
when: "matrix_synapse_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-synapse.service doesn't exist
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.file:
|
2020-03-24 19:27:58 +01:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-synapse.service"
|
2019-05-21 03:46:49 +02:00
|
|
|
state: absent
|
|
|
|
when: "matrix_synapse_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-synapse.service removal
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.service:
|
2022-02-05 21:32:54 +01:00
|
|
|
daemon_reload: true
|
2019-05-21 03:46:49 +02:00
|
|
|
when: "matrix_synapse_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure Synapse Docker image doesn't exist
|
2022-10-28 13:20:17 +02:00
|
|
|
community.docker.docker_image:
|
2022-10-14 15:33:19 +02:00
|
|
|
name: "{{ item }}"
|
2019-05-21 03:46:49 +02:00
|
|
|
state: absent
|
2022-10-14 15:33:19 +02:00
|
|
|
with_items:
|
|
|
|
- "{{ matrix_synapse_docker_image_final }}"
|
|
|
|
- "{{ matrix_synapse_docker_image }}"
|
2022-06-23 16:44:11 +02:00
|
|
|
|
|
|
|
- name: Ensure sample prometheus.yml for external scraping is deleted
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.file:
|
2022-06-23 16:44:11 +02:00
|
|
|
path: "{{ matrix_synapse_base_path }}/external_prometheus.yml.example"
|
|
|
|
state: absent
|
2022-07-18 10:22:05 +02:00
|
|
|
when: "not matrix_synapse_metrics_proxying_enabled | bool"
|