You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
825 B
25 lines
825 B
---
|
|
- name: Check existence of matrix-client-cinny.service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-cinny.service"
|
|
register: matrix_client_cinny_service_stat
|
|
|
|
- when: matrix_client_cinny_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-client-cinny is stopped
|
|
ansible.builtin.service:
|
|
name: matrix-client-cinny
|
|
state: stopped
|
|
enabled: false
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-client-cinny.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-cinny.service"
|
|
state: absent
|
|
|
|
- name: Ensure Cinny paths doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_client_cinny_data_path }}"
|
|
state: absent
|