2022-06-24 02:24:52 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-maubot service
|
2022-07-20 14:48:26 +08:00
|
|
|
ansible.builtin.stat:
|
2022-11-04 22:38:38 +08:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-maubot.service"
|
2022-06-24 03:57:52 +08:00
|
|
|
register: matrix_bot_maubot_service_stat
|
2022-06-24 02:24:52 +08:00
|
|
|
|
2022-07-09 19:00:17 +08:00
|
|
|
- name: Ensure matrix-bot-maubot is stopped
|
2022-07-20 14:48:26 +08:00
|
|
|
ansible.builtin.service:
|
2022-07-09 19:00:17 +08:00
|
|
|
name: matrix-bot-maubot
|
2022-06-24 02:24:52 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
|
|
|
register: stopping_result
|
2022-09-18 17:21:09 +08:00
|
|
|
when: "matrix_bot_maubot_service_stat.stat.exists | bool"
|
2022-06-24 02:24:52 +08:00
|
|
|
|
2022-07-09 19:00:17 +08:00
|
|
|
- name: Ensure matrix-bot-maubot.service doesn't exist
|
2022-07-20 14:48:26 +08:00
|
|
|
ansible.builtin.file:
|
2022-11-04 22:38:38 +08:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-maubot.service"
|
2022-06-24 02:24:52 +08:00
|
|
|
state: absent
|
2022-09-18 17:21:09 +08:00
|
|
|
when: "matrix_bot_maubot_service_stat.stat.exists | bool"
|
2022-06-24 02:24:52 +08:00
|
|
|
|
2022-07-09 19:00:17 +08:00
|
|
|
- name: Ensure systemd reloaded after matrix-bot-maubot.service removal
|
2022-07-20 14:48:26 +08:00
|
|
|
ansible.builtin.service:
|
2022-06-24 02:24:52 +08:00
|
|
|
daemon_reload: true
|
2022-09-18 17:21:09 +08:00
|
|
|
when: "matrix_bot_maubot_service_stat.stat.exists | bool"
|
2022-06-24 02:24:52 +08:00
|
|
|
|
|
|
|
- name: Ensure Matrix maubot paths don't exist
|
2022-07-20 14:48:26 +08:00
|
|
|
ansible.builtin.file:
|
2022-06-24 03:57:52 +08:00
|
|
|
path: "{{ matrix_bot_maubot_base_path }}"
|
2022-06-24 02:24:52 +08:00
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Ensure maubot Docker image doesn't exist
|
2022-10-28 19:20:17 +08:00
|
|
|
community.docker.docker_image:
|
2022-06-24 03:57:52 +08:00
|
|
|
name: "{{ matrix_bot_maubot_docker_image }}"
|
2022-06-24 02:24:52 +08:00
|
|
|
state: absent
|