mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-05 06:01:15 +03:00
* Synapse Admin is Ketesa now! * i18n changes * add automatic migration * fix migration version in vars * add a note about routing for OIDC Auth * mention v1.0.0 announcement blog post * Update docs/container-images.md Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com> --------- Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
31 lines
932 B
YAML
31 lines
932 B
YAML
# SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
|
|
# SPDX-FileCopyrightText: 2026 Nikita Chernyi
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Check existence of matrix-ketesa service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ketesa.service"
|
|
register: matrix_ketesa_service_stat
|
|
|
|
- when: matrix_ketesa_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-ketesa is stopped
|
|
ansible.builtin.service:
|
|
name: matrix-ketesa
|
|
state: stopped
|
|
enabled: false
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-ketesa.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ketesa.service"
|
|
state: absent
|
|
|
|
- name: Ensure matrix-ketesa directory doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_ketesa_base_path }}"
|
|
state: absent
|