mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-09 21:03:58 +00:00
25dfbdf1d7
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
25 lines
808 B
YAML
25 lines
808 B
YAML
# SPDX-FileCopyrightText: 2022 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Check existence of matrix-beeper-linkedin service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-beeper-linkedin.service"
|
|
register: matrix_beeper_linkedin_service_stat
|
|
|
|
- when: matrix_beeper_linkedin_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-beeper-linkedin is stopped
|
|
ansible.builtin.service:
|
|
name: matrix-beeper-linkedin
|
|
state: stopped
|
|
enabled: false
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-beeper-linkedin.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-beeper-linkedin.service"
|
|
state: absent
|