--- - name: Check existence of matrix-cactus-comments service ansible.builtin.stat: path: "{{ devture_systemd_docker_base_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: "{{ devture_systemd_docker_base_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 community.docker.docker_image: name: "{{ matrix_cactus_comments_docker_image }}" state: absent