2020-12-14 16:12:03 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-registration service
|
|
|
|
stat:
|
|
|
|
path: "{{ matrix_systemd_path }}/matrix-registration.service"
|
|
|
|
register: matrix_registration_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2020-12-14 16:12:03 +00:00
|
|
|
name: matrix-registration
|
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2020-12-14 16:12:03 +00:00
|
|
|
register: stopping_result
|
|
|
|
when: "matrix_registration_service_stat.stat.exists|bool"
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration.service doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2020-12-14 16:12:03 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-registration.service"
|
|
|
|
state: absent
|
|
|
|
when: "matrix_registration_service_stat.stat.exists|bool"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-registration.service removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2020-12-14 16:12:03 +00:00
|
|
|
when: "matrix_registration_service_stat.stat.exists|bool"
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration Docker image doesn't exist
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_registration_docker_image }}"
|
|
|
|
state: absent
|