mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 09:08:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			862 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			862 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
 | 
						|
- name: Check existence of matrix-mautrix-hangouts service
 | 
						|
  ansible.builtin.stat:
 | 
						|
    path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service"
 | 
						|
  register: matrix_mautrix_hangouts_service_stat
 | 
						|
 | 
						|
- name: Ensure matrix-mautrix-hangouts is stopped
 | 
						|
  ansible.builtin.service:
 | 
						|
    name: matrix-mautrix-hangouts
 | 
						|
    state: stopped
 | 
						|
    enabled: false
 | 
						|
    daemon_reload: true
 | 
						|
  when: "matrix_mautrix_hangouts_service_stat.stat.exists"
 | 
						|
 | 
						|
- name: Ensure matrix-mautrix-hangouts.service doesn't exist
 | 
						|
  ansible.builtin.file:
 | 
						|
    path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service"
 | 
						|
    state: absent
 | 
						|
  when: "matrix_mautrix_hangouts_service_stat.stat.exists"
 | 
						|
 | 
						|
- name: Ensure systemd reloaded after matrix-mautrix-hangouts.service removal
 | 
						|
  ansible.builtin.service:
 | 
						|
    daemon_reload: true
 | 
						|
  when: "matrix_mautrix_hangouts_service_stat.stat.exists"
 |