mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 09:08:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
 | 
						|
#
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
 | 
						|
---
 | 
						|
 | 
						|
- name: Check existence of matrix-appservice-kakaotalk service
 | 
						|
  ansible.builtin.stat:
 | 
						|
    path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk.service"
 | 
						|
  register: matrix_appservice_kakaotalk_service_stat
 | 
						|
 | 
						|
- name: Ensure matrix-appservice-kakaotalk is stopped
 | 
						|
  ansible.builtin.service:
 | 
						|
    name: matrix-appservice-kakaotalk
 | 
						|
    state: stopped
 | 
						|
    enabled: false
 | 
						|
    daemon_reload: true
 | 
						|
  when: matrix_appservice_kakaotalk_service_stat.stat.exists | bool
 | 
						|
 | 
						|
- name: Check existence of matrix-appservice-kakaotalk-node service
 | 
						|
  ansible.builtin.stat:
 | 
						|
    path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk-node.service"
 | 
						|
  register: matrix_appservice_kakaotalk_node_service_stat
 | 
						|
 | 
						|
- name: Ensure matrix-appservice-kakaotalk-node is stopped
 | 
						|
  ansible.builtin.service:
 | 
						|
    name: matrix-appservice-kakaotalk-node
 | 
						|
    state: stopped
 | 
						|
    enabled: false
 | 
						|
    daemon_reload: true
 | 
						|
  when: matrix_appservice_kakaotalk_node_service_stat.stat.exists | bool
 | 
						|
 | 
						|
- name: Ensure matrix-appservice-kakaotalk.service files don't exist
 | 
						|
  ansible.builtin.file:
 | 
						|
    path: "{{ item }}"
 | 
						|
    state: absent
 | 
						|
  with_items:
 | 
						|
    - "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk-node.service"
 | 
						|
    - "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk.service"
 | 
						|
  when: matrix_appservice_kakaotalk_service_stat.stat.exists | bool or matrix_appservice_kakaotalk_node_service_stat.stat.exists | bool
 |