Преглед на файлове

Tribute to deprecated components: add license information to files for matrix-bridge-appservice-webhooks

This commit adds copyright headers to Markdown, YAML, and labels.j2 files. For the rest of the files, which are ones in YAML and JSON files with the extention ".j2", ".license" files are added following the REUSE's specification.

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/4099/head
Suguru Hirahara преди 1 година
родител
ревизия
dc9672a86f
No known key found for this signature in database GPG ключ ID: E4F9743DAB4B7B75
променени са 11 файла, в които са добавени 80 реда и са изтрити 0 реда
  1. +11
    -0
      docs/configuring-playbook-bridge-appservice-webhooks.md
  2. +13
    -0
      roles/custom/matrix-bridge-appservice-webhooks/defaults/main.yml
  3. +6
    -0
      roles/custom/matrix-bridge-appservice-webhooks/tasks/main.yml
  4. +12
    -0
      roles/custom/matrix-bridge-appservice-webhooks/tasks/setup_install.yml
  5. +7
    -0
      roles/custom/matrix-bridge-appservice-webhooks/tasks/setup_uninstall.yml
  6. +6
    -0
      roles/custom/matrix-bridge-appservice-webhooks/tasks/validate_config.yml
  7. +3
    -0
      roles/custom/matrix-bridge-appservice-webhooks/templates/config.yaml.j2.license
  8. +4
    -0
      roles/custom/matrix-bridge-appservice-webhooks/templates/database.json.j2.license
  9. +6
    -0
      roles/custom/matrix-bridge-appservice-webhooks/templates/labels.j2
  10. +4
    -0
      roles/custom/matrix-bridge-appservice-webhooks/templates/schema.yml.j2.license
  11. +8
    -0
      roles/custom/matrix-bridge-appservice-webhooks/templates/systemd/matrix-appservice-webhooks.service.j2.license

+ 11
- 0
docs/configuring-playbook-bridge-appservice-webhooks.md Целия файл

@@ -1,3 +1,14 @@
<!--
SPDX-FileCopyrightText: 2020 Björn Marten
SPDX-FileCopyrightText: 2020 - 2023 MDAD project contributors
SPDX-FileCopyrightText: 2020 Slavi Pantaleev
SPDX-FileCopyrightText: 2020 iLyas Bakouch
SPDX-FileCopyrightText: 2022 Kim Brose
SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara

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

# Setting up Appservice Webhooks bridging (optional, deprecated) # Setting up Appservice Webhooks bridging (optional, deprecated)


**Note**: This bridge has been deprecated. We recommend not bothering with installing it. While not a 1:1 replacement, the bridge's author suggests taking a look at [matrix-hookshot](https://github.com/matrix-org/matrix-hookshot) as a replacement, which can also be installed using [this playbook](configuring-playbook-bridge-hookshot.md). Consider using that bridge instead of this one. **Note**: This bridge has been deprecated. We recommend not bothering with installing it. While not a 1:1 replacement, the bridge's author suggests taking a look at [matrix-hookshot](https://github.com/matrix-org/matrix-hookshot) as a replacement, which can also be installed using [this playbook](configuring-playbook-bridge-hookshot.md). Consider using that bridge instead of this one.


+ 13
- 0
roles/custom/matrix-bridge-appservice-webhooks/defaults/main.yml Целия файл

@@ -1,3 +1,16 @@
# SPDX-FileCopyrightText: 2020 Björn Marten
# SPDX-FileCopyrightText: 2020 David Gnedt
# SPDX-FileCopyrightText: 2020 - 2025 Slavi Pantaleev
# SPDX-FileCopyrightText: 2021 - 2023 MDAD project contributors
# SPDX-FileCopyrightText: 2021 Béla Becker
# SPDX-FileCopyrightText: 2021 Ahmad Haghighi
# SPDX-FileCopyrightText: 2021 boris runakov
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
# SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---
# matrix-appservice-webhooks is a Matrix <-> webhook bridge # matrix-appservice-webhooks is a Matrix <-> webhook bridge
# Project source code URL: https://github.com/redoonetworks/matrix-appservice-webhooks # Project source code URL: https://github.com/redoonetworks/matrix-appservice-webhooks


+ 6
- 0
roles/custom/matrix-bridge-appservice-webhooks/tasks/main.yml Целия файл

@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2020 Björn Marten
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---


- tags: - tags:


+ 12
- 0
roles/custom/matrix-bridge-appservice-webhooks/tasks/setup_install.yml Целия файл

@@ -1,3 +1,15 @@
# SPDX-FileCopyrightText: 2020 Björn Marten
# SPDX-FileCopyrightText: 2020 Chris van Dijk
# SPDX-FileCopyrightText: 2020 MDAD project contributors
# SPDX-FileCopyrightText: 2021 - 2024 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 Jim Myhrberg
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
# SPDX-FileCopyrightText: 2022 Sebastian Gumprich
# SPDX-FileCopyrightText: 2024 David Mehren
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---


- name: Ensure matrix-appservice-webhooks paths exist - name: Ensure matrix-appservice-webhooks paths exist


+ 7
- 0
roles/custom/matrix-bridge-appservice-webhooks/tasks/setup_uninstall.yml Целия файл

@@ -1,3 +1,10 @@
# SPDX-FileCopyrightText: 2020 Björn Marten
# SPDX-FileCopyrightText: 2020 MDAD project contributors
# SPDX-FileCopyrightText: 2021 - 2022 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Marko Weltzer
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---


- name: Check existence of matrix-appservice-webhooks service - name: Check existence of matrix-appservice-webhooks service


+ 6
- 0
roles/custom/matrix-bridge-appservice-webhooks/tasks/validate_config.yml Целия файл

@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2020 Björn Marten
# SPDX-FileCopyrightText: 2021 boris runakov
# SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---


- name: Fail if required matrix-appservice-webhooks settings not defined - name: Fail if required matrix-appservice-webhooks settings not defined


+ 3
- 0
roles/custom/matrix-bridge-appservice-webhooks/templates/config.yaml.j2.license Целия файл

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

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

+ 4
- 0
roles/custom/matrix-bridge-appservice-webhooks/templates/database.json.j2.license Целия файл

@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2020 Björn Marten
SPDX-FileCopyrightText: 2022 Slavi Pantaleev

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

+ 6
- 0
roles/custom/matrix-bridge-appservice-webhooks/templates/labels.j2 Целия файл

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

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

{% if matrix_appservice_webhooks_container_labels_traefik_enabled %} {% if matrix_appservice_webhooks_container_labels_traefik_enabled %}
traefik.enable=true traefik.enable=true




+ 4
- 0
roles/custom/matrix-bridge-appservice-webhooks/templates/schema.yml.j2.license Целия файл

@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2020 Björn Marten
SPDX-FileCopyrightText: 2022 Slavi Pantaleev

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

+ 8
- 0
roles/custom/matrix-bridge-appservice-webhooks/templates/systemd/matrix-appservice-webhooks.service.j2.license Целия файл

@@ -0,0 +1,8 @@
SPDX-FileCopyrightText: 2020 Björn Marten
SPDX-FileCopyrightText: 2020 Chris van Dijk
SPDX-FileCopyrightText: 2020 MDAD project contributors
SPDX-FileCopyrightText: 2020 Scott Crossen
SPDX-FileCopyrightText: 2020 Stefan Warnat
SPDX-FileCopyrightText: 2020 - 2025 Slavi Pantaleev

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

Зареждане…
Отказ
Запис