matrix-docker-ansible-deploy/roles/custom/matrix-pantalaimon/tasks/uninstall.yml
Slavi Pantaleev 0049ddf002 Add Pantalaimon support
This is actually authored by Julian Foad here
(https://lab.trax.im/matrix/matrix-docker-ansible-deploy), but was in
need of a rebase and various adjustments caused by huge playbook
refactoring that landed in the past months.

This rework is completely untested.

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/266
2024-03-24 18:35:34 +02:00

26 lines
828 B
YAML

---
- name: Check existence of matrix-pantalaimon service
ansible.builtin.stat:
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-pantalaimon.service"
register: matrix_pantalaimon_service_stat
- when: matrix_pantalaimon_service_stat.stat.exists | bool
block:
- name: Ensure matrix-pantalaimon is stopped
ansible.builtin.service:
name: matrix-pantalaimon
state: stopped
enabled: false
daemon_reload: true
- name: Ensure matrix-pantalaimon.service doesn't exist
ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-pantalaimon.service"
state: absent
- name: Ensure matrix-pantalaimon paths don't exist
ansible.builtin.file:
path: "{{ matrix_pantalaimon_base_path }}"
state: absent