Move matrix-bridge-mx-puppet-groupme to its own container network

This commit is contained in:
Slavi Pantaleev
2024-01-08 17:12:38 +02:00
parent 82de4581e3
commit f94f2b9823
6 changed files with 52 additions and 15 deletions

View File

@ -40,11 +40,20 @@ matrix_mx_puppet_groupme_provisioning_whitelist:
# "@.*:yourserver.com" disallow users on a specific homeserver
matrix_mx_puppet_groupme_provisioning_blacklist: []
matrix_mx_puppet_groupme_container_network: ""
matrix_mx_puppet_groupme_container_additional_networks: "{{ matrix_mx_puppet_groupme_container_additional_networks_auto + matrix_mx_puppet_groupme_container_additional_networks_custom }}"
matrix_mx_puppet_groupme_container_additional_networks_auto: []
matrix_mx_puppet_groupme_container_additional_networks_custom: []
# A list of extra arguments to pass to the container
matrix_mx_puppet_groupme_container_extra_arguments: []
# List of systemd services that matrix-puppet-groupme.service depends on.
matrix_mx_puppet_groupme_systemd_required_services_list: ['docker.service']
matrix_mx_puppet_groupme_systemd_required_services_list: "{{ matrix_mx_puppet_groupme_systemd_required_services_list_default + matrix_mx_puppet_groupme_systemd_required_services_list_auto + matrix_mx_puppet_groupme_systemd_required_services_list_custom }}"
matrix_mx_puppet_groupme_systemd_required_services_list_default: ['docker.service']
matrix_mx_puppet_groupme_systemd_required_services_list_auto: []
matrix_mx_puppet_groupme_systemd_required_services_list_custom: []
# List of systemd services that matrix-puppet-groupme.service wants
matrix_mx_puppet_groupme_systemd_wanted_services_list: []
@ -55,6 +64,9 @@ matrix_mx_puppet_groupme_homeserver_token: ''
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
matrix_mx_puppet_groupme_login_shared_secret: ''
matrix_mx_puppet_groupme_presence_enabled: true
matrix_mx_puppet_groupme_presence_interval: 5000
matrix_mx_puppet_groupme_database_engine: sqlite
matrix_mx_puppet_groupme_sqlite_database_path_local: "{{ matrix_mx_puppet_groupme_data_path }}/database.db"