matrix-docker-ansible-deploy/roles/custom/matrix-media-repo/tasks/setup_uninstall.yml
Suguru Hirahara d3826ee652
Add license information to files for matrix-media-repo
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
2025-03-01 01:41:41 +09:00

24 lines
768 B
YAML

# SPDX-FileCopyrightText: 2023 Michael Hollister
#
# 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