2020-07-17 08:31:20 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-riot-web.service
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-riot-web.service"
|
2020-07-17 08:31:20 +00:00
|
|
|
register: matrix_client_riot_web_service_stat
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-riot-web is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2020-07-17 08:31:20 +00:00
|
|
|
name: matrix-riot-web
|
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2020-07-17 08:31:20 +00:00
|
|
|
register: stopping_result
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool and matrix_client_riot_web_service_stat.stat.exists"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-riot-web.service doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-riot-web.service"
|
2020-07-17 08:31:20 +00:00
|
|
|
state: absent
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool and matrix_client_riot_web_service_stat.stat.exists"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-riot-web.service removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool and matrix_client_riot_web_service_stat.stat.exists"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Check existence of /matrix/riot-web
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2020-07-17 08:31:20 +00:00
|
|
|
path: "/matrix/riot-web"
|
|
|
|
register: matrix_client_riot_web_dir_stat
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Relocate /matrix/riot-web to /matrix/client-element
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.command: "mv /matrix/riot-web /matrix/client-element"
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_enabled | bool and matrix_client_riot_web_dir_stat.stat.exists"
|