From c80fb913e7973deb76da6f445b565d9fc364823f Mon Sep 17 00:00:00 2001 From: Aine Date: Thu, 20 Feb 2025 15:48:19 +0200 Subject: [PATCH] borg backup: do not backup remote content by default --- group_vars/matrix_servers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group_vars/matrix_servers b/group_vars/matrix_servers index 46e08f6a8..285a26470 100755 --- a/group_vars/matrix_servers +++ b/group_vars/matrix_servers @@ -3144,7 +3144,7 @@ backup_borg_location_source_directories: backup_borg_location_exclude_patterns: | {{ - ([matrix_synapse_media_store_path + '/local_thumbnails', matrix_synapse_media_store_path + '/remote_thumbnail', matrix_synapse_media_store_path + '/url_cache', matrix_synapse_media_store_path + '/url_cache_thumbnails'] if matrix_homeserver_implementation == 'synapse' else []) + ([matrix_synapse_media_store_path + '/remote_content', matrix_synapse_media_store_path + '/local_thumbnails', matrix_synapse_media_store_path + '/remote_thumbnail', matrix_synapse_media_store_path + '/url_cache', matrix_synapse_media_store_path + '/url_cache_thumbnails'] if matrix_homeserver_implementation == 'synapse' else []) + ([postgres_data_path] if postgres_enabled else []) }}