mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-10-19 06:33:24 +00:00
renamed the livekit role and added livekit-server and jwt-service roles to the setup file.
This commit is contained in:
21
roles/custom/matrix-livekit-server/tasks/uninstall.yml
Normal file
21
roles/custom/matrix-livekit-server/tasks/uninstall.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
# Uninstall tasks for matrix-livekit-server
|
||||
|
||||
- name: Stop and remove livekit container
|
||||
community.docker.docker_container:
|
||||
name: "matrix-livekit-server"
|
||||
state: absent
|
||||
|
||||
- name: Remove livekit systemd service
|
||||
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:
|
||||
daemon_reload: true
|
Reference in New Issue
Block a user