mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-31 20:34:57 +01:00
21 lines
763 B
YAML
21 lines
763 B
YAML
---
|
|
|
|
- name: Check existence of matrix-mautrix-whatsapp service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_mautrix_whatsapp_identifier }}.service"
|
|
register: matrix_mautrix_whatsapp_service_stat
|
|
|
|
- when: matrix_mautrix_whatsapp_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-mautrix-whatsapp is stopped
|
|
ansible.builtin.service:
|
|
name: "{{ matrix_mautrix_whatsapp_identifier }}"
|
|
state: stopped
|
|
enabled: false
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-mautrix-whatsapp.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_mautrix_whatsapp_identifier }}.service"
|
|
state: absent
|