mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-10-03 02:59:33 +02:00
* Documentation update * New files for role * Update existing files to add support for matrix-steam-bridge * Typos and misc fixes * Change docker tag to latest until version # is stable * Align bridge permissions * Correct user localpart * Remove trailing + * Fix syslog identifier * Actually enable the service correctly * One more typo fix * Third time's the charm * Fix config file paths * Fix config after bridge repo changes * Add default appservice public address - set public_media to false by default for testing * Fix default config for steamkit-service path * Fix bluesky reference * Fix default container path * Fix appservice connection to http for internal, change port to standard 8080 * Fix appservice port * Enable public_media by default, add labels * Enable public_media by default, add labels * Allow bridge to update its own config and generate public_media signing key * Add deterministic public_media_signing_key, expose portal cleanup * Change default public_media path to omit `matrix.` from the path as it has been found that URLs generated by the bridge will only match {{ matrix_domain }} * Remove domain re-write * Revert "Change default public_media path to omit `matrix.` from the path as it has been found that URLs generated by the bridge will only match {{ matrix_domain }}" This reverts commit5f399effb9
. * Fix TLS label if playbook TLS is disabled * Match default bridge TLS config * Related to3daf14d69
and60ab08014
which enable async media by default for mautrix-go bridges * Adjust matrix-bridge-steam files to add new line at the end of files * Pin matrix-bridge-steam (latest -> 1.0.3) --------- Co-authored-by: Slavi Pantaleev <slavi@devture.com>
24 lines
760 B
YAML
24 lines
760 B
YAML
# SPDX-FileCopyrightText: 2025 MDAD project contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Check existence of matrix-steam-bridge service
|
|
ansible.builtin.stat:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-steam-bridge.service"
|
|
register: matrix_steam_bridge_service_stat
|
|
|
|
- when: matrix_steam_bridge_service_stat.stat.exists | bool
|
|
block:
|
|
- name: Ensure matrix-steam-bridge is stopped
|
|
ansible.builtin.service:
|
|
name: matrix-steam-bridge
|
|
state: stopped
|
|
daemon_reload: true
|
|
|
|
- name: Ensure matrix-steam-bridge.service doesn't exist
|
|
ansible.builtin.file:
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-steam-bridge.service"
|
|
state: absent
|