37 lines
1.4 KiB
YAML
37 lines
1.4 KiB
YAML
|
---
|
||
|
|
||
|
- name: Check existence of matrix-matrix_ldap_registration_proxy service
|
||
|
ansible.builtin.stat:
|
||
|
path: "{{ matrix_systemd_path }}/matrix-ldap-registration-proxy.service"
|
||
|
register: matrix_matrix_ldap_registration_proxy_service_stat
|
||
|
|
||
|
- name: Ensure matrix-matrix_ldap_registration_proxy is stopped
|
||
|
ansible.builtin.service:
|
||
|
name: matrix-matrix_ldap_registration_proxy
|
||
|
state: stopped
|
||
|
enabled: false
|
||
|
daemon_reload: true
|
||
|
register: stopping_result
|
||
|
when: "matrix_matrix_ldap_registration_proxy_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure matrix-ldap-registration-proxy.service doesn't exist
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ matrix_systemd_path }}/matrix-ldap-registration-proxy.service"
|
||
|
state: absent
|
||
|
when: "matrix_matrix_ldap_registration_proxy_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure systemd reloaded after matrix-ldap-registration-proxy.service removal
|
||
|
ansible.builtin.service:
|
||
|
daemon_reload: true
|
||
|
when: "matrix_matrix_ldap_registration_proxy_service_stat.stat.exists | bool"
|
||
|
|
||
|
- name: Ensure Matrix matrix_ldap_registration_proxy paths don't exist
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ matrix_matrix_ldap_registration_proxy_base_path }}"
|
||
|
state: absent
|
||
|
|
||
|
- name: Ensure matrix_ldap_registration_proxy Docker image doesn't exist
|
||
|
docker_image:
|
||
|
name: "{{ matrix_matrix_ldap_registration_proxy_docker_image }}"
|
||
|
state: absent
|