mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 00:58:56 +01:00 
			
		
		
		
	This commit adds copyright attributions in SPDX to the files for matrix-cactus-comments and matrix-cactus-comments-client, following REUSE's specification. Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
		
			
				
	
	
		
			30 lines
		
	
	
		
			1012 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1012 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
 | 
						|
#
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
 | 
						|
---
 | 
						|
 | 
						|
- name: Check existence of matrix-cactus-comments-client service
 | 
						|
  ansible.builtin.stat:
 | 
						|
    path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-cactus-comments-client.service"
 | 
						|
  register: matrix_cactus_comments_client_service_stat
 | 
						|
 | 
						|
- when: matrix_cactus_comments_client_service_stat.stat.exists | bool
 | 
						|
  block:
 | 
						|
    - name: Ensure cactus comments is stopped
 | 
						|
      ansible.builtin.service:
 | 
						|
        name: matrix-cactus-comments-client
 | 
						|
        state: stopped
 | 
						|
        enabled: false
 | 
						|
        daemon_reload: true
 | 
						|
 | 
						|
    - name: Ensure matrix-cactus-comments-client.service doesn't exist
 | 
						|
      ansible.builtin.file:
 | 
						|
        path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-cactus-comments-client.service"
 | 
						|
        state: absent
 | 
						|
 | 
						|
    - name: Ensure Matrix cactus comments paths don't exist
 | 
						|
      ansible.builtin.file:
 | 
						|
        path: "{{ matrix_cactus_comments_client_base_path }}"
 | 
						|
        state: absent
 |