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>
23 lines
793 B
YAML
23 lines
793 B
YAML
# 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
|
|
ansible.builtin.fail:
|
|
msg: >-
|
|
You need to define a required configuration setting (`{{ item }}`).
|
|
when: "vars[item] == ''"
|
|
with_items:
|
|
- matrix_appservice_webhooks_appservice_token
|
|
- matrix_appservice_webhooks_homeserver_url
|
|
- matrix_appservice_webhooks_homeserver_token
|
|
- matrix_appservice_webhooks_id_token
|
|
- matrix_appservice_webhooks_api_secret
|
|
- matrix_appservice_webhooks_container_network
|
|
- matrix_appservice_webhooks_hostname
|
|
- matrix_appservice_webhooks_path_prefix
|