37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
|
---
|
||
|
|
||
|
- name: Check existence of matrix-cactus-comments service
|
||
|
ansible.builtin.stat:
|
||
|
path: "{{ matrix_systemd_path }}/matrix-cactus-comments.service"
|
||
|
register: matrix_cactus_comments_service_stat
|
||
|
|
||
|
- name: Ensure cactus comments is stopped
|
||
|
ansible.builtin.service:
|
||
|
name: matrix-cactus-comments
|
||
|
state: stopped
|
||
|
enabled: false
|
||
|
daemon_reload: true
|
||
|
register: stopping_result
|
||
|
when: "matrix_cactus_comments_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure matrix-cactus-comments.service doesn't exist
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ matrix_systemd_path }}/matrix-cactus-comments.service"
|
||
|
state: absent
|
||
|
when: "matrix_cactus_comments_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure systemd reloaded after matrix-cactus-comments.service removal
|
||
|
ansible.builtin.service:
|
||
|
daemon_reload: true
|
||
|
when: "matrix_cactus_comments_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure Matrix cactus comments paths don't exist
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ matrix_cactus_comments_base_path }}"
|
||
|
state: absent
|
||
|
|
||
|
- name: Ensure cactus comments Docker image doesn't exist
|
||
|
docker_image:
|
||
|
name: "{{ matrix_cactus_comments_docker_image }}"
|
||
|
state: absent
|