2025-02-23 13:33:30 +09:00
# SPDX-FileCopyrightText: 2020 Rodrigo Belem
2025-02-24 07:59:37 +02:00
# SPDX-FileCopyrightText: 2022 - 2025 Slavi Pantaleev
2025-03-05 13:30:50 +09:00
# SPDX-FileCopyrightText: 2025 Suguru Hirahara
2025-02-23 13:33:30 +09:00
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2020-04-12 10:17:30 -04:00
---
2022-11-27 08:23:43 +02:00
- name : Fail if required mx-puppet-slack settings not defined
2022-07-18 10:39:08 +03:00
ansible.builtin.fail :
2020-04-12 10:17:30 -04:00
msg : >-
2022-11-27 08:23:43 +02:00
You need to define a required configuration setting (`{{ item.name }}`).
when : "item.when | bool and vars[item.name] == ''"
2020-04-12 10:17:30 -04:00
with_items :
2024-01-08 17:34:38 +02:00
- {'name': 'matrix_mx_puppet_slack_hostname', when : true }
- {'name': 'matrix_mx_puppet_slack_path_prefix', when : true }
2022-11-27 08:23:43 +02:00
- {'name': 'matrix_mx_puppet_slack_appservice_token', when : true }
2024-01-07 17:04:23 +02:00
- {'name': 'matrix_mx_puppet_slack_homeserver_address', when : true }
2022-11-27 08:23:43 +02:00
- {'name': 'matrix_mx_puppet_slack_homeserver_token', when : true }
- {'name': 'matrix_mx_puppet_slack_database_hostname', when : "{{ matrix_mx_puppet_slack_database_engine == 'postgres' }}" }
2024-01-08 17:34:38 +02:00
- {'name': 'matrix_mx_puppet_slack_container_network', when : true }
- name : (Deprecation) Catch and report renamed mx-puppet-slack settings
ansible.builtin.fail :
msg : >-
Your configuration contains a variable, which now has a different name.
2025-03-05 13:30:50 +09:00
Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
2024-01-08 17:34:38 +02:00
when : "item.old in vars"
with_items :
- {'old': 'matrix_mx_puppet_slack_redirect_path', 'new' : 'matrix_mx_puppet_slack_oauth_redirect_path, but setting matrix_mx_puppet_slack_path_prefix is better' }
- {'old': 'matrix_mx_puppet_slack_redirect_uri', 'new' : '<matrix_mx_puppet_slack_oauth_redirect_uri, but controlling matrix_mx_puppet_slack_scheme/matrix_mx_puppet_slack_hostname/matrix_mx_puppet_slack_path_prefix is better' }
2025-02-24 07:59:37 +02:00
- {'old': 'matrix_mx_puppet_slack_docker_image_name_prefix', 'new' : 'matrix_mx_puppet_slack_docker_image_registry_prefix' }