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

Add license information to files for matrix-authentication-service

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/4124/head
Suguru Hirahara преди 1 година
родител
ревизия
41c59a1223
No known key found for this signature in database GPG ключ ID: E4F9743DAB4B7B75
променени са 21 файла, в които са добавени 85 реда и са изтрити 0 реда
  1. +7
    -0
      docs/configuring-playbook-matrix-authentication-service.md
  2. +5
    -0
      roles/custom/matrix-authentication-service/defaults/main.yml
  3. +4
    -0
      roles/custom/matrix-authentication-service/tasks/install.yml
  4. +4
    -0
      roles/custom/matrix-authentication-service/tasks/main.yml
  5. +4
    -0
      roles/custom/matrix-authentication-service/tasks/mas_cli_doctor.yml
  6. +4
    -0
      roles/custom/matrix-authentication-service/tasks/register_user.yml
  7. +5
    -0
      roles/custom/matrix-authentication-service/tasks/syn2mas.yml
  8. +4
    -0
      roles/custom/matrix-authentication-service/tasks/uninstall.yml
  9. +4
    -0
      roles/custom/matrix-authentication-service/tasks/util/prepare_key.yml
  10. +4
    -0
      roles/custom/matrix-authentication-service/tasks/validate_config.yml
  11. +3
    -0
      roles/custom/matrix-authentication-service/templates/bin/mas-cli.j2.license
  12. +3
    -0
      roles/custom/matrix-authentication-service/templates/bin/register-user.j2.license
  13. +3
    -0
      roles/custom/matrix-authentication-service/templates/config.yaml.j2.license
  14. +6
    -0
      roles/custom/matrix-authentication-service/templates/env.j2
  15. +6
    -0
      roles/custom/matrix-authentication-service/templates/labels.j2
  16. +3
    -0
      roles/custom/matrix-authentication-service/templates/provider/anthropic-config.yml.j2.license
  17. +3
    -0
      roles/custom/matrix-authentication-service/templates/provider/groq-config.yml.j2.license
  18. +3
    -0
      roles/custom/matrix-authentication-service/templates/provider/mistral-config.yml.j2.license
  19. +3
    -0
      roles/custom/matrix-authentication-service/templates/provider/openai-config.yml.j2.license
  20. +3
    -0
      roles/custom/matrix-authentication-service/templates/systemd/matrix-authentication-service.service.j2.license
  21. +4
    -0
      roles/custom/matrix-authentication-service/vars/main.yml

+ 7
- 0
docs/configuring-playbook-matrix-authentication-service.md Целия файл

@@ -1,3 +1,10 @@
<!--
SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara

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

# Setting up Matrix Authentication Service (optional)

The playbook can install and configure [Matrix Authentication Service](https://github.com/element-hq/matrix-authentication-service/) (MAS) — a service operating alongside your existing [Synapse](./configuring-playbook-synapse.md) homeserver and providing [better authentication, session management and permissions in Matrix](https://matrix.org/blog/2023/09/better-auth/).


+ 5
- 0
roles/custom/matrix-authentication-service/defaults/main.yml Целия файл

@@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
# SPDX-FileCopyrightText: 2025 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

# matrix-authentication-service (MAS) is an OAuth 2.0 and OpenID Provider server for Matrix.


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/install.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Ensure Matrix Authentication Service paths exist


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/main.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- tags:


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/mas_cli_doctor.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Ensure Matrix Authentication Service is started


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/register_user.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Fail if playbook called incorrectly


+ 5
- 0
roles/custom/matrix-authentication-service/tasks/syn2mas.yml Целия файл

@@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
# SPDX-FileCopyrightText: 2025 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- ansible.builtin.set_fact:


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/uninstall.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Check existence of matrix-authentication-service service


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/util/prepare_key.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Prepare Matrix Authentication Service private key file path ({{ private_key_definition.key_file }})


+ 4
- 0
roles/custom/matrix-authentication-service/tasks/validate_config.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Fail if required matrix-authentication-service settings not defined


+ 3
- 0
roles/custom/matrix-authentication-service/templates/bin/mas-cli.j2.license Целия файл

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

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

+ 3
- 0
roles/custom/matrix-authentication-service/templates/bin/register-user.j2.license Целия файл

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

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

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

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

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

+ 6
- 0
roles/custom/matrix-authentication-service/templates/env.j2 Целия файл

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

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

{{ matrix_authentication_service_environment_variables_extension }}

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

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

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

{% if matrix_authentication_service_container_labels_traefik_enabled %}
traefik.enable=true



+ 3
- 0
roles/custom/matrix-authentication-service/templates/provider/anthropic-config.yml.j2.license Целия файл

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

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

+ 3
- 0
roles/custom/matrix-authentication-service/templates/provider/groq-config.yml.j2.license Целия файл

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

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

+ 3
- 0
roles/custom/matrix-authentication-service/templates/provider/mistral-config.yml.j2.license Целия файл

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

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

+ 3
- 0
roles/custom/matrix-authentication-service/templates/provider/openai-config.yml.j2.license Целия файл

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

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

+ 3
- 0
roles/custom/matrix-authentication-service/templates/systemd/matrix-authentication-service.service.j2.license Целия файл

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

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

+ 4
- 0
roles/custom/matrix-authentication-service/vars/main.yml Целия файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

# Like `matrix_authentication_service_config_http_public_base` but a private base URL only accessible from within the container network.


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