2024-09-30 22:20:46 +10:00
|
|
|
---
|
|
|
|
# Uninstall tasks for matrix-livekit-server
|
|
|
|
|
2024-11-21 15:58:01 +02:00
|
|
|
- name: Stop and remove LiveKit container
|
2024-09-30 22:20:46 +10:00
|
|
|
community.docker.docker_container:
|
|
|
|
name: "matrix-livekit-server"
|
|
|
|
state: absent
|
|
|
|
|
2024-11-21 15:57:51 +02:00
|
|
|
- name: Remove LiveKit systemd service
|
2024-09-30 22:20:46 +10:00
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-livekit-server.service"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Remove matrix-livekit-server configuration files
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ matrix_livekit_serverbase_path }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Reload systemd daemon
|
|
|
|
ansible.builtin.systemd:
|
2024-10-03 12:38:34 +10:00
|
|
|
daemon_reload: true
|