From 036fe3dd0fd1ecc61d748c7ffa5485472b479b3b Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 7 Feb 2026 16:39:27 +0900 Subject: [PATCH] Set `matrix-client-cinny` to `cinny_identifier` Signed-off-by: Suguru Hirahara --- docs/configuring-playbook-client-cinny.md | 2 +- group_vars/matrix_servers | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/configuring-playbook-client-cinny.md b/docs/configuring-playbook-client-cinny.md index eea81f1a8..77722e978 100644 --- a/docs/configuring-playbook-client-cinny.md +++ b/docs/configuring-playbook-client-cinny.md @@ -72,4 +72,4 @@ The shortcut commands with the [`just` program](just.md) are also available: `ju ## Troubleshooting -As with all other services, you can find the logs in [systemd-journald](https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html) by logging in to the server with SSH and running `journalctl -fu cinny`. +As with all other services, you can find the logs in [systemd-journald](https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html) by logging in to the server with SSH and running `journalctl -fu matrix-client-cinny`. diff --git a/group_vars/matrix_servers b/group_vars/matrix_servers index 0b024387a..92eea1141 100755 --- a/group_vars/matrix_servers +++ b/group_vars/matrix_servers @@ -344,7 +344,7 @@ devture_systemd_service_manager_services_list_auto: | + ([{'name': 'matrix-cactus-comments-client.service', 'priority': 2000, 'groups': ['matrix', 'cactus-comments-client']}] if matrix_cactus_comments_client_enabled else []) + - ([{'name': 'cinny.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'cinny', 'client-cinny']}] if cinny_enabled else []) + ([{'name': (cinny_identifier + '.service'), 'priority': 2000, 'groups': ['matrix', 'clients', 'cinny', 'client-cinny']}] if cinny_enabled else []) + ([{'name': 'matrix-client-element.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'element', 'client-element']}] if matrix_client_element_enabled else []) + @@ -4288,6 +4288,8 @@ matrix_client_hydrogen_self_check_validate_certificates: "{{ matrix_playbook_ssl cinny_enabled: false +cinny_identifier: matrix-client-cinny + cinny_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else cinny_docker_image_registry_prefix_upstream_default }}" cinny_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"