mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-03-25 22:17:25 +00:00
Add support for the Sable client (Cinny fork)
This commit is contained in:
@@ -576,6 +576,13 @@ devture_systemd_service_manager_services_list_auto: |
|
||||
'groups': ['matrix', 'clients', 'cinny', 'client-cinny'],
|
||||
}] if cinny_enabled else [])
|
||||
+
|
||||
([{
|
||||
'name': (sable_identifier + '.service'),
|
||||
'priority': 2000,
|
||||
'restart_necessary': (sable_restart_necessary | bool),
|
||||
'groups': ['matrix', 'clients', 'sable', 'client-sable'],
|
||||
}] if sable_enabled else [])
|
||||
+
|
||||
([{
|
||||
'name': 'matrix-client-element.service',
|
||||
'priority': 2000,
|
||||
@@ -4523,6 +4530,54 @@ cinny_hostname: "{{ matrix_server_fqn_cinny }}"
|
||||
#
|
||||
######################################################################
|
||||
|
||||
######################################################################
|
||||
#
|
||||
# sable
|
||||
#
|
||||
######################################################################
|
||||
|
||||
sable_enabled: false
|
||||
|
||||
sable_identifier: matrix-client-sable
|
||||
|
||||
sable_uid: "{{ matrix_user_uid }}"
|
||||
sable_gid: "{{ matrix_user_gid }}"
|
||||
|
||||
sable_container_image_registry_prefix: "{{ 'localhost/' if sable_container_image_self_build else sable_container_image_registry_prefix_upstream }}"
|
||||
sable_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else sable_container_image_registry_prefix_upstream_default }}"
|
||||
|
||||
sable_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
|
||||
|
||||
sable_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8771') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
|
||||
|
||||
sable_container_network: "{{ matrix_addons_container_network }}"
|
||||
|
||||
sable_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (sable_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
|
||||
|
||||
sable_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
|
||||
sable_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
|
||||
sable_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
|
||||
sable_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
|
||||
|
||||
sable_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
|
||||
sable_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
|
||||
|
||||
sable_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
|
||||
|
||||
sable_default_hs_url: "{{ matrix_homeserver_url }}"
|
||||
|
||||
sable_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
|
||||
|
||||
sable_base_path: "{{ matrix_base_data_path }}/client-sable"
|
||||
|
||||
sable_hostname: "{{ matrix_server_fqn_sable }}"
|
||||
|
||||
######################################################################
|
||||
#
|
||||
# /sable
|
||||
#
|
||||
######################################################################
|
||||
|
||||
######################################################################
|
||||
#
|
||||
# matrix-client-schildichat
|
||||
|
||||
Reference in New Issue
Block a user