From 2ea438484097923fbb1f3e76058b45490a1c1ab1 Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sun, 21 Sep 2025 09:58:58 +0300 Subject: [PATCH] Add `--no-update` to mautrix-whatsapp and mautrix-gmessages All other mautrix bridges already had `--no-update`. For some reason, these 2 didn't. Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/4585 --- .../templates/systemd/matrix-mautrix-gmessages.service.j2 | 2 +- .../templates/systemd/matrix-mautrix-whatsapp.service.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/custom/matrix-bridge-mautrix-gmessages/templates/systemd/matrix-mautrix-gmessages.service.j2 b/roles/custom/matrix-bridge-mautrix-gmessages/templates/systemd/matrix-mautrix-gmessages.service.j2 index e0fa1ab0d..8c93be942 100644 --- a/roles/custom/matrix-bridge-mautrix-gmessages/templates/systemd/matrix-mautrix-gmessages.service.j2 +++ b/roles/custom/matrix-bridge-mautrix-gmessages/templates/systemd/matrix-mautrix-gmessages.service.j2 @@ -31,7 +31,7 @@ ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \ {{ arg }} \ {% endfor %} {{ matrix_mautrix_gmessages_docker_image }} \ - /usr/bin/mautrix-gmessages -c /config/config.yaml -r /config/registration.yaml + /usr/bin/mautrix-gmessages -c /config/config.yaml -r /config/registration.yaml --no-update {% for network in matrix_mautrix_gmessages_container_additional_networks %} ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-mautrix-gmessages diff --git a/roles/custom/matrix-bridge-mautrix-whatsapp/templates/systemd/matrix-mautrix-whatsapp.service.j2 b/roles/custom/matrix-bridge-mautrix-whatsapp/templates/systemd/matrix-mautrix-whatsapp.service.j2 index 4fe10a546..c496cf33f 100644 --- a/roles/custom/matrix-bridge-mautrix-whatsapp/templates/systemd/matrix-mautrix-whatsapp.service.j2 +++ b/roles/custom/matrix-bridge-mautrix-whatsapp/templates/systemd/matrix-mautrix-whatsapp.service.j2 @@ -31,7 +31,7 @@ ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \ {{ arg }} \ {% endfor %} {{ matrix_mautrix_whatsapp_docker_image }} \ - /usr/bin/mautrix-whatsapp -c /config/config.yaml -r /config/registration.yaml + /usr/bin/mautrix-whatsapp -c /config/config.yaml -r /config/registration.yaml --no-update {% for network in matrix_mautrix_whatsapp_container_additional_networks %} ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-mautrix-whatsapp