From 11f6e2e81027667bd17447dcd4ea19fb1eda8fa9 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Tue, 20 Feb 2024 19:20:25 +0100 Subject: [PATCH] Fix documentation bug in configuring-playbook-bridge-mautrix-signal.md With the `|` the yaml is interpreted and saved to the configuration as a string and mautrix-signal doesn't start. --- docs/configuring-playbook-bridge-mautrix-signal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuring-playbook-bridge-mautrix-signal.md b/docs/configuring-playbook-bridge-mautrix-signal.md index e2caf4714..86e0d0313 100644 --- a/docs/configuring-playbook-bridge-mautrix-signal.md +++ b/docs/configuring-playbook-bridge-mautrix-signal.md @@ -45,7 +45,7 @@ This will add the admin permission to the specific user, while keeping the defau In case you want to replace the default permissions settings **completely**, populate the following item within your `vars.yml` file: ```yaml -matrix_mautrix_signal_bridge_permissions: | +matrix_mautrix_signal_bridge_permissions: '@ADMIN:YOUR_DOMAIN': admin '@USER:YOUR_DOMAIN' : user ```