---

- name: Check existence of matrix-buscarron service
  ansible.builtin.stat:
    path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service"
  register: matrix_bot_buscarron_service_stat

- name: Ensure matrix-buscarron is stopped
  ansible.builtin.service:
    name: matrix-bot-buscarron
    state: stopped
    enabled: false
    daemon_reload: true
  register: stopping_result
  when: "matrix_bot_buscarron_service_stat.stat.exists | bool"

- name: Ensure matrix-bot-buscarron.service doesn't exist
  ansible.builtin.file:
    path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service"
    state: absent
  when: "matrix_bot_buscarron_service_stat.stat.exists | bool"

- name: Ensure systemd reloaded after matrix-bot-buscarron.service removal
  ansible.builtin.service:
    daemon_reload: true
  when: "matrix_bot_buscarron_service_stat.stat.exists | bool"

- name: Ensure Matrix buscarron paths don't exist
  ansible.builtin.file:
    path: "{{ matrix_bot_buscarron_base_path }}"
    state: absent

- name: Ensure buscarron Docker image doesn't exist
  docker_image:
    name: "{{ matrix_bot_buscarron_docker_image }}"
    state: absent