2021-01-14 20:11:38 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-coturn 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-coturn.service"
|
2021-01-14 20:11:38 +00:00
|
|
|
register: matrix_coturn_service_stat
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "not matrix_coturn_enabled | bool"
|
2021-01-14 20:11:38 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-coturn is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2021-01-14 20:11:38 +00:00
|
|
|
name: matrix-coturn
|
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_coturn_service_stat.stat.exists | bool"
|
2021-01-14 20:11:38 +00:00
|
|
|
|
2021-01-14 21:23:46 +00:00
|
|
|
- name: Ensure matrix-coturn-reload.timer is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2021-01-14 21:23:46 +00:00
|
|
|
name: matrix-coturn
|
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2021-01-14 21:23:46 +00:00
|
|
|
failed_when: false
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_coturn_service_stat.stat.exists | bool"
|
2021-01-14 21:23:46 +00:00
|
|
|
|
|
|
|
- name: Ensure systemd units don't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}"
|
2021-01-14 20:11:38 +00:00
|
|
|
state: absent
|
2021-01-14 21:23:46 +00:00
|
|
|
register: matrix_coturn_systemd_unit_uninstallation_result
|
|
|
|
with_items:
|
|
|
|
- matrix-coturn.service
|
|
|
|
- matrix-coturn-reload.service
|
|
|
|
- matrix-coturn-reload.timer
|
2021-01-14 20:11:38 +00:00
|
|
|
|
2021-01-14 21:23:46 +00:00
|
|
|
- name: Ensure systemd reloaded after unit removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_coturn_systemd_unit_uninstallation_result.changed | bool"
|
2021-01-14 20:11:38 +00:00
|
|
|
|
|
|
|
- name: Ensure Matrix coturn paths don't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2021-01-14 20:11:38 +00:00
|
|
|
path: "{{ matrix_coturn_base_path }}"
|
|
|
|
state: absent
|
|
|
|
|
2021-01-23 12:01:27 +00:00
|
|
|
# Intentionally not removing the Docker image when uninstalling.
|
|
|
|
# We can't be sure it had been pulled by us in the first place.
|