mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-10-31 15:27:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # SPDX-FileCopyrightText: 2023 MDAD project contributors
 | |
| # SPDX-FileCopyrightText: 2023 Slavi Pantaleev
 | |
| #
 | |
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| 
 | |
| ---
 | |
| 
 | |
| - name: Check existence of matrix-user-verification-service service
 | |
|   ansible.builtin.stat:
 | |
|     path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
 | |
|   register: matrix_user_verification_service_service_stat
 | |
| 
 | |
| - when: matrix_user_verification_service_service_stat.stat.exists | bool
 | |
|   block:
 | |
|     - name: Ensure matrix-user-verification-service is stopped
 | |
|       ansible.builtin.service:
 | |
|         name: "{{ matrix_user_verification_service_systemd_service_basename }}"
 | |
|         state: stopped
 | |
|         daemon_reload: true
 | |
|       register: stopping_result
 | |
| 
 | |
|     - name: Ensure matrix-user-verification-service.service doesn't exist
 | |
|       ansible.builtin.file:
 | |
|         path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_user_verification_service_systemd_service_name }}"
 | |
|         state: absent
 | |
| 
 | |
|     - name: Ensure Matrix user-verification-service paths don't exist
 | |
|       ansible.builtin.file:
 | |
|         path: "{{ matrix_user_verification_service_base_path }}"
 | |
|         state: absent
 |