matrix-docker-ansible-deploy/roles/custom/matrix-bot-buscarron/tasks/setup_uninstall.yml

37 lines
1.1 KiB
YAML
Raw Normal View History

2022-04-23 13:19:24 +00:00
---
- name: Check existence of matrix-buscarron service
2022-07-18 08:22:05 +00:00
ansible.builtin.stat:
2022-04-23 13:19:24 +00:00
path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service"
register: matrix_bot_buscarron_service_stat
- name: Ensure matrix-buscarron is stopped
ansible.builtin.service:
2022-04-23 13:19:24 +00:00
name: matrix-bot-buscarron
state: stopped
enabled: false
daemon_reload: true
register: stopping_result
2022-07-18 08:22:05 +00:00
when: "matrix_bot_buscarron_service_stat.stat.exists | bool"
2022-04-23 13:19:24 +00:00
- name: Ensure matrix-bot-buscarron.service doesn't exist
ansible.builtin.file:
2022-04-23 13:19:24 +00:00
path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service"
state: absent
2022-07-18 08:22:05 +00:00
when: "matrix_bot_buscarron_service_stat.stat.exists | bool"
2022-04-23 13:19:24 +00:00
- name: Ensure systemd reloaded after matrix-bot-buscarron.service removal
ansible.builtin.service:
2022-04-23 13:19:24 +00:00
daemon_reload: true
2022-07-18 08:22:05 +00:00
when: "matrix_bot_buscarron_service_stat.stat.exists | bool"
2022-04-23 13:19:24 +00:00
- name: Ensure Matrix buscarron paths don't exist
ansible.builtin.file:
2022-04-23 13:19:24 +00:00
path: "{{ matrix_bot_buscarron_base_path }}"
state: absent
- name: Ensure buscarron Docker image doesn't exist
community.docker.docker_image:
2022-04-23 13:19:24 +00:00
name: "{{ matrix_bot_buscarron_docker_image }}"
state: absent