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.
36 lines
1.1 KiB
36 lines
1.1 KiB
3 years ago
|
---
|
||
|
- name: Check existence of matrix-client-cinny.service
|
||
2 years ago
|
ansible.builtin.stat:
|
||
3 years ago
|
path: "{{ matrix_systemd_path }}/matrix-client-cinny.service"
|
||
|
register: matrix_client_cinny_service_stat
|
||
|
|
||
|
- name: Ensure matrix-client-cinny is stopped
|
||
2 years ago
|
ansible.builtin.service:
|
||
3 years ago
|
name: matrix-client-cinny
|
||
|
state: stopped
|
||
3 years ago
|
enabled: false
|
||
|
daemon_reload: true
|
||
3 years ago
|
register: stopping_result
|
||
2 years ago
|
when: "matrix_client_cinny_service_stat.stat.exists | bool"
|
||
3 years ago
|
|
||
|
- name: Ensure matrix-client-cinny.service doesn't exist
|
||
2 years ago
|
ansible.builtin.file:
|
||
3 years ago
|
path: "{{ matrix_systemd_path }}/matrix-client-cinny.service"
|
||
|
state: absent
|
||
2 years ago
|
when: "matrix_client_cinny_service_stat.stat.exists | bool"
|
||
3 years ago
|
|
||
|
- name: Ensure systemd reloaded after matrix-client-cinny.service removal
|
||
2 years ago
|
ansible.builtin.service:
|
||
3 years ago
|
daemon_reload: true
|
||
2 years ago
|
when: "matrix_client_cinny_service_stat.stat.exists | bool"
|
||
3 years ago
|
|
||
|
- name: Ensure Cinny paths doesn't exist
|
||
2 years ago
|
ansible.builtin.file:
|
||
3 years ago
|
path: "{{ matrix_client_cinny_data_path }}"
|
||
|
state: absent
|
||
|
|
||
|
- name: Ensure Cinny Docker image doesn't exist
|
||
2 years ago
|
community.docker.docker_image:
|
||
3 years ago
|
name: "{{ matrix_client_cinny_docker_image }}"
|
||
|
state: absent
|