2024-09-25 14:53:48 +10:00
|
|
|
---
|
2024-09-26 07:59:09 +10:00
|
|
|
# Uninstall tasks for matrix-element-call
|
2024-09-25 14:53:48 +10:00
|
|
|
|
2024-09-26 07:59:09 +10:00
|
|
|
- name: Stop and remove matrix-element-call container
|
2024-09-25 14:53:48 +10:00
|
|
|
community.docker.docker_container:
|
|
|
|
name: "matrix-element-call"
|
|
|
|
state: absent
|
|
|
|
|
2024-09-26 07:59:09 +10:00
|
|
|
- name: Stop and remove redis container
|
2024-09-25 14:53:48 +10:00
|
|
|
community.docker.docker_container:
|
|
|
|
name: "matrix-redis"
|
|
|
|
state: absent
|
|
|
|
|
2024-09-26 07:59:09 +10:00
|
|
|
- name: Remove matrix-element-call systemd service
|
2024-09-25 14:53:48 +10:00
|
|
|
ansible.builtin.file:
|
2024-09-26 07:59:09 +10:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-element-call.service"
|
2024-09-25 14:53:48 +10:00
|
|
|
state: absent
|
|
|
|
|
2024-09-26 07:59:09 +10:00
|
|
|
- name: Remove redis systemd service
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-redis.service"
|
2024-09-25 14:53:48 +10:00
|
|
|
state: absent
|
2024-09-26 07:59:09 +10:00
|
|
|
|
|
|
|
- name: Remove matrix-element-call configuration files
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ matrix_element_call_base_path }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Reload systemd daemon
|
|
|
|
ansible.builtin.systemd:
|
|
|
|
daemon_reload: true
|