1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-08-04 21:43:06 +02:00
Files
matrix-docker-ansible-deploy/roles/custom/matrix-media-repo/tasks/setup_uninstall.yml

24 lines
768 B
YAML
Raw Permalink Normal View History

# SPDX-FileCopyrightText: 2023 Michael Hollister
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2023-07-12 01:09:27 -05:00
---
- name: Check existence of media-repo service
2023-07-12 01:09:27 -05:00
ansible.builtin.stat:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
2023-07-12 01:09:27 -05: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 01:09:27 -05:00
ansible.builtin.systemd:
name: "{{ matrix_media_repo_identifier }}"
2023-07-12 01:09:27 -05:00
state: stopped
daemon_reload: true
- name: Ensure media-repo service doesn't exist
2023-07-12 01:09:27 -05:00
ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_media_repo_identifier }}.service"
2023-07-12 01:09:27 -05:00
state: absent