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
This commit is contained in:
25
roles/custom/matrix-pantalaimon/tasks/uninstall.yml
Normal file
25
roles/custom/matrix-pantalaimon/tasks/uninstall.yml
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
|
||||
- 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
|
Reference in New Issue
Block a user