Просмотр исходного кода

Add license information to files in matrix-synapse/templates/synapse

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/4140/head
Suguru Hirahara 1 год назад
Родитель
Сommit
2eb952201c
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: E4F9743DAB4B7B75
17 измененных файлов: 132 добавлений и 0 удалений
  1. +6
    -0
      roles/custom/matrix-synapse/templates/synapse/bin/register-user.j2.license
  2. +5
    -0
      roles/custom/matrix-synapse/templates/synapse/customizations/Dockerfile.j2.license
  3. +5
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/bin/migrate.j2.license
  4. +4
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/bin/shell.j2.license
  5. +6
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/database.yaml.j2
  6. +8
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/env.j2
  7. +8
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/media_storage_provider.yaml.j2
  8. +3
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/systemd/matrix-synapse-s3-storage-provider-migrate.service.j2.license
  9. +3
    -0
      roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/systemd/matrix-synapse-s3-storage-provider-migrate.timer.j2.license
  10. +33
    -0
      roles/custom/matrix-synapse/templates/synapse/homeserver.yaml.j2.license
  11. +6
    -0
      roles/custom/matrix-synapse/templates/synapse/labels.j2
  12. +8
    -0
      roles/custom/matrix-synapse/templates/synapse/prometheus/external_prometheus.yml.example.j2
  13. +5
    -0
      roles/custom/matrix-synapse/templates/synapse/synapse.log.config.j2.license
  14. +5
    -0
      roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse-worker.service.j2.license
  15. +13
    -0
      roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse.service.j2.license
  16. +6
    -0
      roles/custom/matrix-synapse/templates/synapse/worker-labels.j2
  17. +8
    -0
      roles/custom/matrix-synapse/templates/synapse/worker.yaml.j2.license

+ 6
- 0
roles/custom/matrix-synapse/templates/synapse/bin/register-user.j2.license Просмотреть файл

@@ -0,0 +1,6 @@
SPDX-FileCopyrightText: 2017 - 2024 Slavi Pantaleev
SPDX-FileCopyrightText: 2019 Hugues De Keyzer
SPDX-FileCopyrightText: 2019 Julian Foad
SPDX-FileCopyrightText: 2021 boris runakov

SPDX-License-Identifier: AGPL-3.0-or-later

+ 5
- 0
roles/custom/matrix-synapse/templates/synapse/customizations/Dockerfile.j2.license Просмотреть файл

@@ -0,0 +1,5 @@
SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
SPDX-FileCopyrightText: 2023 Cody Wyatt Neiman
SPDX-FileCopyrightText: 2024 MDAD project contributors

SPDX-License-Identifier: AGPL-3.0-or-later

+ 5
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/bin/migrate.j2.license Просмотреть файл

@@ -0,0 +1,5 @@
SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
SPDX-FileCopyrightText: 2022 Cody Wyatt Neiman
SPDX-FileCopyrightText: 2024 Tiago Carrondo

SPDX-License-Identifier: AGPL-3.0-or-later

+ 4
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/bin/shell.j2.license Просмотреть файл

@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
SPDX-FileCopyrightText: 2024 Tiago Carrondo

SPDX-License-Identifier: AGPL-3.0-or-later

+ 6
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/database.yaml.j2 Просмотреть файл

@@ -1,3 +1,9 @@
{#
SPDX-FileCopyrightText: 2022 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later
#}

user: {{ matrix_synapse_database_user | to_json }}
password: {{ matrix_synapse_database_password | to_json }}
database: {{ matrix_synapse_database_database | to_json }}


+ 8
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/env.j2 Просмотреть файл

@@ -1,3 +1,11 @@
{#
SPDX-FileCopyrightText: 2022 - 2023 Cody Wyatt Neiman
SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
SPDX-FileCopyrightText: 2023 MDAD project contributors

SPDX-License-Identifier: AGPL-3.0-or-later
#}

{% if not matrix_synapse_ext_synapse_s3_storage_provider_config_ec2_instance_profile | bool %}
AWS_ACCESS_KEY_ID={{ matrix_synapse_ext_synapse_s3_storage_provider_config_access_key_id }}
AWS_SECRET_ACCESS_KEY={{ matrix_synapse_ext_synapse_s3_storage_provider_config_secret_access_key }}


+ 8
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/media_storage_provider.yaml.j2 Просмотреть файл

@@ -1,3 +1,11 @@
{#
SPDX-FileCopyrightText: 2022 - 2023 Cody Wyatt Neiman
SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
SPDX-FileCopyrightText: 2023 MDAD project contributors

SPDX-License-Identifier: AGPL-3.0-or-later
#}

module: s3_storage_provider.S3StorageProviderBackend
store_local: {{ matrix_synapse_ext_synapse_s3_storage_provider_store_local | to_json }}
store_remote: {{ matrix_synapse_ext_synapse_s3_storage_provider_store_remote | to_json }}


+ 3
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/systemd/matrix-synapse-s3-storage-provider-migrate.service.j2.license Просмотреть файл

@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2022 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later

+ 3
- 0
roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/systemd/matrix-synapse-s3-storage-provider-migrate.timer.j2.license Просмотреть файл

@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later

+ 33
- 0
roles/custom/matrix-synapse/templates/synapse/homeserver.yaml.j2.license Просмотреть файл

@@ -0,0 +1,33 @@
SPDX-FileCopyrightText: 2018 - 2024 MDAD project contributors
SPDX-FileCopyrightText: 2018 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2018 Hugues Morisset
SPDX-FileCopyrightText: 2018 Thomas vO
SPDX-FileCopyrightText: 2019 - 2021 Marcel Partap
SPDX-FileCopyrightText: 2019 - 2022 Aaron Raimist
SPDX-FileCopyrightText: 2019 Ciaran Ainsworth
SPDX-FileCopyrightText: 2019 Dan Arnfield
SPDX-FileCopyrightText: 2019 Hugues De Keyzer
SPDX-FileCopyrightText: 2019 Lee Verberne
SPDX-FileCopyrightText: 2019 Lyubomir Popov
SPDX-FileCopyrightText: 2019 Oleg Fiksel
SPDX-FileCopyrightText: 2019 Sylvia van Os
SPDX-FileCopyrightText: 2020 Chris van Dijk
SPDX-FileCopyrightText: 2020 Justin Croonenberghs
SPDX-FileCopyrightText: 2020 Max Klenk
SPDX-FileCopyrightText: 2021 Ahmad Haghighi
SPDX-FileCopyrightText: 2021 Alejo Diaz
SPDX-FileCopyrightText: 2021 Pablo Montepagano
SPDX-FileCopyrightText: 2021 Toni Spets
SPDX-FileCopyrightText: 2021 boris runakov
SPDX-FileCopyrightText: 2022 - 2024 Nikita Chernyi
SPDX-FileCopyrightText: 2022 Benjamin Castellan
SPDX-FileCopyrightText: 2022 Jim Myhrberg
SPDX-FileCopyrightText: 2022 Shaleen Jain
SPDX-FileCopyrightText: 2022 Yan Minagawa
SPDX-FileCopyrightText: 2023 - 2024 Michael Hollister
SPDX-FileCopyrightText: 2023 Aeris One
SPDX-FileCopyrightText: 2023 Alexis Yushin
SPDX-FileCopyrightText: 2023 Luke D Iremadze
SPDX-FileCopyrightText: 2024 Suguru Hirahara

SPDX-License-Identifier: AGPL-3.0-or-later

+ 6
- 0
roles/custom/matrix-synapse/templates/synapse/labels.j2 Просмотреть файл

@@ -1,3 +1,9 @@
{#
SPDX-FileCopyrightText: 2024 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later
#}

{% if matrix_synapse_container_labels_traefik_enabled %}
traefik.enable=true



+ 8
- 0
roles/custom/matrix-synapse/templates/synapse/prometheus/external_prometheus.yml.example.j2 Просмотреть файл

@@ -1,3 +1,11 @@
{#
SPDX-FileCopyrightText: 2021 MDAD project contributors
SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
SPDX-FileCopyrightText: 2022 Kim Brose

SPDX-License-Identifier: AGPL-3.0-or-later
#}

global:
scrape_interval: 5s



+ 5
- 0
roles/custom/matrix-synapse/templates/synapse/synapse.log.config.j2.license Просмотреть файл

@@ -0,0 +1,5 @@
SPDX-FileCopyrightText: 2018 - 2022 Slavi Pantaleev
SPDX-FileCopyrightText: 2018 Aaron Raimist
SPDX-FileCopyrightText: 2019 Hugues De Keyzer

SPDX-License-Identifier: AGPL-3.0-or-later

+ 5
- 0
roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse-worker.service.j2.license Просмотреть файл

@@ -0,0 +1,5 @@
SPDX-FileCopyrightText: 2021 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2022 Shaleen Jain
SPDX-FileCopyrightText: 2024 Michael Hollister

SPDX-License-Identifier: AGPL-3.0-or-later

+ 13
- 0
roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse.service.j2.license Просмотреть файл

@@ -0,0 +1,13 @@
SPDX-FileCopyrightText: 2017 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2019 - 2021 MDAD project contributors
SPDX-FileCopyrightText: 2019 Aaron Raimist
SPDX-FileCopyrightText: 2019 Hugues De Keyzer
SPDX-FileCopyrightText: 2019 Sylvia van Os
SPDX-FileCopyrightText: 2020 - 2021 Marcel Partap
SPDX-FileCopyrightText: 2020 Chris van Dijk
SPDX-FileCopyrightText: 2021 boris runakov
SPDX-FileCopyrightText: 2022 László Várady
SPDX-FileCopyrightText: 2022 Shaleen Jain
SPDX-FileCopyrightText: 2024 Michael Hollister

SPDX-License-Identifier: AGPL-3.0-or-later

+ 6
- 0
roles/custom/matrix-synapse/templates/synapse/worker-labels.j2 Просмотреть файл

@@ -1,3 +1,9 @@
{#
SPDX-FileCopyrightText: 2024 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later
#}

{% if matrix_synapse_worker_container_labels_traefik_enabled %}
traefik.enable=true



+ 8
- 0
roles/custom/matrix-synapse/templates/synapse/worker.yaml.j2.license Просмотреть файл

@@ -0,0 +1,8 @@
SPDX-FileCopyrightText: 2020 Marcel Partap
SPDX-FileCopyrightText: 2020 Max Klenk
SPDX-FileCopyrightText: 2021 - 2024 Slavi Pantaleev
SPDX-FileCopyrightText: 2021 boris runakov
SPDX-FileCopyrightText: 2022 David Mehren
SPDX-FileCopyrightText: 2024 Charles Wright

SPDX-License-Identifier: AGPL-3.0-or-later

Загрузка…
Отмена
Сохранить