mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-10 13:23:50 +00:00
8e63f12fbe
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
24 lines
777 B
YAML
24 lines
777 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Check existence of media-repo service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
|
|
register: matrix_media_repo_service_stat
|
|
|
|
- when: matrix_media_repo_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure media-repo is stopped
|
|
ansible.builtin.systemd:
|
|
name: "{{ matrix_media_repo_identifier }}"
|
|
state: stopped
|
|
daemon_reload: true
|
|
|
|
- name: Ensure media-repo service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
|
|
state: absent
|