matrix-docker-ansible-deploy/roles/custom/matrix-media-repo/tasks/setup_uninstall.yml

24 lines
777 B
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2023-07-12 06:09:27 +00:00
---
- name: Check existence of media-repo service
2023-07-12 06:09:27 +00:00
ansible.builtin.stat:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
2023-07-12 06:09:27 +00:00
register: matrix_media_repo_service_stat
- when: matrix_media_repo_service_stat.stat.exists | bool
block:
- name: Ensure media-repo is stopped
2023-07-12 06:09:27 +00:00
ansible.builtin.systemd:
name: "{{ matrix_media_repo_identifier }}"
2023-07-12 06:09:27 +00:00
state: stopped
daemon_reload: true
- name: Ensure media-repo service doesn't exist
2023-07-12 06:09:27 +00:00
ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
2023-07-12 06:09:27 +00:00
state: absent