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-bridge-mx-puppet-groupme/tasks/setup_uninstall.yml

27 lines
854 B
YAML
Raw Permalink Normal View History

# SPDX-FileCopyrightText: 2021 - 2022 Slavi Pantaleev
# SPDX-FileCopyrightText: 2021 Cody Neiman
# SPDX-FileCopyrightText: 2022 Marko Weltzer
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2021-02-12 23:13:30 -05:00
---
- name: Check existence of matrix-mx-puppet-groupme service
2022-07-18 11:22:05 +03:00
ansible.builtin.stat:
2021-02-12 23:13:30 -05:00
path: "/etc/systemd/system/matrix-mx-puppet-groupme.service"
register: matrix_mx_puppet_groupme_service_stat
- when: matrix_mx_puppet_groupme_service_stat.stat.exists | bool
block:
- name: Ensure matrix-mx-puppet-groupme is stopped
ansible.builtin.service:
name: matrix-mx-puppet-groupme
state: stopped
enabled: false
daemon_reload: true
2021-02-12 23:13:30 -05:00
- name: Ensure matrix-mx-puppet-groupme.service doesn't exist
ansible.builtin.file:
path: "/etc/systemd/system/matrix-mx-puppet-groupme.service"
state: absent