mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-22 12:35:51 +00:00
Consolidate conditionals into a block, keep image
Co-authored-by: Slavi Pantaleev <slavi@devture.com>
This commit is contained in:
parent
f53731756d
commit
6913d368c8
@ -5,31 +5,21 @@
|
|||||||
path: "{{ matrix_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
|
path: "{{ matrix_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
|
||||||
register: matrix_user_verification_service_service_stat
|
register: matrix_user_verification_service_service_stat
|
||||||
|
|
||||||
- name: Ensure matrix-user-verification-service is stopped
|
- when: matrix_user_verification_service_service_stat.stat.exists | bool
|
||||||
service:
|
block:
|
||||||
name: "{{ matrix_user_verification_service_systemd_service_basename }}"
|
- name: Ensure matrix-user-verification-service is stopped
|
||||||
state: stopped
|
service:
|
||||||
daemon_reload: yes
|
name: "{{ matrix_user_verification_service_systemd_service_basename }}"
|
||||||
register: stopping_result
|
state: stopped
|
||||||
when: "matrix_user_verification_service_service_stat.stat.exists|bool"
|
daemon_reload: yes
|
||||||
|
register: stopping_result
|
||||||
|
|
||||||
- name: Ensure matrix-user-verification-service.service doesn't exist
|
- name: Ensure matrix-user-verification-service.service doesn't exist
|
||||||
file:
|
file:
|
||||||
path: "{{ matrix_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
|
path: "{{ matrix_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
|
||||||
state: absent
|
state: absent
|
||||||
when: "matrix_user_verification_service_service_stat.stat.exists|bool"
|
|
||||||
|
|
||||||
- name: Ensure systemd reloaded after matrix-user-verification-service.service removal
|
- name: Ensure Matrix user-verification-service paths don't exist
|
||||||
service:
|
file:
|
||||||
daemon_reload: yes
|
path: "{{ matrix_user_verification_service_base_path }}"
|
||||||
when: "matrix_user_verification_service_service_stat.stat.exists|bool"
|
state: absent
|
||||||
|
|
||||||
- name: Ensure Matrix user-verification-service paths don't exist
|
|
||||||
file:
|
|
||||||
path: "{{ matrix_user_verification_service_base_path }}"
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: Ensure user-verification-service Docker image doesn't exist
|
|
||||||
docker_image:
|
|
||||||
name: "{{ matrix_user_verification_service_docker_image }}"
|
|
||||||
state: absent
|
|
||||||
|
Loading…
Reference in New Issue
Block a user