Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- # SPDX-FileCopyrightText: 2020 - 2022 Slavi Pantaleev
- # SPDX-FileCopyrightText: 2022 Marko Weltzer
- # SPDX-FileCopyrightText: 2022 Sebastian Gumprich
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- - name: Check existence of matrix-registration service
- ansible.builtin.stat:
- path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-registration.service"
- register: matrix_registration_service_stat
-
- - when: matrix_registration_service_stat.stat.exists | bool
- block:
- - name: Ensure matrix-registration is stopped
- ansible.builtin.service:
- name: matrix-registration
- state: stopped
- enabled: false
- daemon_reload: true
-
- - name: Ensure matrix-registration.service doesn't exist
- ansible.builtin.file:
- path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-registration.service"
- state: absent
|