2022-04-21 08:07:47 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-matrix-registration-bot service
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2022-04-21 08:07:47 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-bot-matrix-registration-bot.service"
|
|
|
|
register: matrix_bot_matrix_registration_bot_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-matrix-registration-bot is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-04-21 08:07:47 +00:00
|
|
|
name: matrix-bot-matrix-registration-bot
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
|
|
|
register: stopping_result
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_bot_matrix_registration_bot_service_stat.stat.exists | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-bot-matrix-registration-bot.service doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-04-21 08:07:47 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-bot-matrix-registration-bot.service"
|
|
|
|
state: absent
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_bot_matrix_registration_bot_service_stat.stat.exists | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-bot-matrix-registration-bot.service removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-04-21 08:07:47 +00:00
|
|
|
daemon_reload: true
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_bot_matrix_registration_bot_service_stat.stat.exists | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
|
|
|
- name: Ensure Matrix matrix-registration-bot paths don't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-04-21 08:07:47 +00:00
|
|
|
path: "{{ matrix_bot_matrix_registration_bot_base_path }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot Docker image doesn't exist
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_bot_matrix_registration_bot_docker_image }}"
|
|
|
|
state: absent
|