mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-15 12:43:12 +01:00
22 lines
597 B
YAML
22 lines
597 B
YAML
---
|
|
# Uninstall tasks for matrix-element-call
|
|
|
|
- name: Stop and remove matrix-element-call container
|
|
community.docker.docker_container:
|
|
name: "matrix-element-call"
|
|
state: absent
|
|
|
|
- name: Remove matrix-element-call systemd service
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-element-call.service"
|
|
state: absent
|
|
|
|
- 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
|