mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 00:58:56 +01:00 
			
		
		
		
	Refer fd39392ec5 as well
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
 | 
						|
# SPDX-FileCopyrightText: 2022 Sebastian Gumprich
 | 
						|
# SPDX-FileCopyrightText: 2022 Slavi Pantaleev
 | 
						|
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
 | 
						|
#
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
 | 
						|
---
 | 
						|
 | 
						|
- name: Check existence of matrix-postmoogle service
 | 
						|
  ansible.builtin.stat:
 | 
						|
    path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postmoogle.service"
 | 
						|
  register: matrix_postmoogle_service_stat
 | 
						|
 | 
						|
- when: matrix_postmoogle_service_stat.stat.exists | bool
 | 
						|
  block:
 | 
						|
    - name: Ensure matrix-postmoogle is stopped
 | 
						|
      ansible.builtin.service:
 | 
						|
        name: matrix-postmoogle
 | 
						|
        state: stopped
 | 
						|
        enabled: false
 | 
						|
        daemon_reload: true
 | 
						|
 | 
						|
    - name: Ensure matrix-postmoogle.service doesn't exist
 | 
						|
      ansible.builtin.file:
 | 
						|
        path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postmoogle.service"
 | 
						|
        state: absent
 | 
						|
 | 
						|
    - name: Ensure Matrix postmoogle paths don't exist
 | 
						|
      ansible.builtin.file:
 | 
						|
        path: "{{ matrix_postmoogle_base_path }}"
 | 
						|
        state: absent
 |