mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-03-04 13:06:13 +00:00

This commit adds copyright attirbutions in SPDX format to files for matrix-sliding-sync, following the REUSE's specification. Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
30 lines
933 B
YAML
30 lines
933 B
YAML
# SPDX-FileCopyrightText: 2023 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Check existence of matrix-sliding-sync service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sliding-sync.service"
|
|
register: matrix_sliding_sync_service_stat
|
|
|
|
- when: matrix_sliding_sync_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-sliding-sync is stopped
|
|
ansible.builtin.service:
|
|
name: matrix-sliding-sync
|
|
state: stopped
|
|
enabled: false
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-sliding-sync.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sliding-sync.service"
|
|
state: absent
|
|
|
|
- name: Ensure matrix-sliding-sync paths don't exist
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_sliding_sync_base_path }}"
|
|
state: absent
|