2022-09-09 11:37:52 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- 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
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2022-09-09 11:37:52 +00:00
|
|
|
name: "{{ matrix_cactus_comments_docker_image }}"
|
|
|
|
state: absent
|