1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2024-11-30 08:16:45 +02:00

Merge pull request #3650 from aine-etke/patch-792975

do not create MAS DB if MAS is disabled
This commit is contained in:
Slavi Pantaleev 2024-10-21 14:29:49 +03:00 committed by GitHub
commit 2a73ea4ae5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4027,7 +4027,7 @@ postgres_managed_databases_auto: |
'name': matrix_authentication_service_config_database_database,
'username': matrix_authentication_service_config_database_username,
'password': matrix_authentication_service_config_database_password,
}] if (matrix_authentication_service_config_database_host == postgres_connection_hostname) else [])
}] if (matrix_authentication_service_enabled and matrix_authentication_service_config_database_host == postgres_connection_hostname) else [])
+
([{
'name': matrix_sliding_sync_database_name,