37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
---
|
|
|
|
- name: Check existence of matrix-buscarron service
|
|
stat:
|
|
path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service"
|
|
register: matrix_bot_buscarron_service_stat
|
|
|
|
- name: Ensure matrix-buscarron is stopped
|
|
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
|
|
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
|
|
service:
|
|
daemon_reload: true
|
|
when: "matrix_bot_buscarron_service_stat.stat.exists|bool"
|
|
|
|
- name: Ensure Matrix buscarron paths don't exist
|
|
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
|