2022-02-06 04:32:54 +08:00
|
|
|
---
|
|
|
|
|
2019-05-21 09:46:49 +08:00
|
|
|
- name: Check existence of matrix-goofys service
|
2022-07-18 16:22:05 +08:00
|
|
|
ansible.builtin.stat:
|
2020-03-25 02:27:58 +08:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-goofys.service"
|
2019-05-21 09:46:49 +08:00
|
|
|
register: matrix_goofys_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-goofys is stopped
|
2022-07-18 15:39:08 +08:00
|
|
|
ansible.builtin.service:
|
2019-05-21 09:46:49 +08:00
|
|
|
name: matrix-goofys
|
|
|
|
state: stopped
|
2022-02-06 04:32:54 +08:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2019-05-21 09:46:49 +08:00
|
|
|
register: stopping_result
|
|
|
|
when: "matrix_goofys_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-goofys.service doesn't exist
|
2022-07-18 15:39:08 +08:00
|
|
|
ansible.builtin.file:
|
2020-03-25 02:27:58 +08:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-goofys.service"
|
2019-05-21 09:46:49 +08:00
|
|
|
state: absent
|
|
|
|
when: "matrix_goofys_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-goofys.service removal
|
2022-07-18 15:39:08 +08:00
|
|
|
ansible.builtin.service:
|
2022-02-06 04:32:54 +08:00
|
|
|
daemon_reload: true
|
2019-05-21 09:46:49 +08:00
|
|
|
when: "matrix_goofys_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure goofys environment variables file doesn't exist
|
2022-07-18 15:39:08 +08:00
|
|
|
ansible.builtin.file:
|
2019-05-21 09:46:49 +08:00
|
|
|
path: "{{ matrix_synapse_config_dir_path }}/env-goofys"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Ensure Goofys Docker image doesn't exist
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_s3_goofys_docker_image }}"
|
|
|
|
state: absent
|