2025-02-23 04:33:30 +00:00
# SPDX-FileCopyrightText: 2020 Rodrigo Belem
2025-02-24 05:59:37 +00:00
# SPDX-FileCopyrightText: 2022 - 2025 Slavi Pantaleev
2025-03-05 04:30:50 +00:00
# SPDX-FileCopyrightText: 2025 Suguru Hirahara
2025-02-23 04:33:30 +00:00
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2020-04-12 14:17:30 +00:00
---
2022-11-27 06:23:43 +00:00
- name : Fail if required mx-puppet-slack settings not defined
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2020-04-12 14:17:30 +00:00
msg : >-
2022-11-27 06:23:43 +00:00
You need to define a required configuration setting (`{{ item.name }}`).
when : "item.when | bool and vars[item.name] == ''"
2020-04-12 14:17:30 +00:00
with_items :
2024-01-08 15:34:38 +00:00
- {'name': 'matrix_mx_puppet_slack_hostname', when : true }
- {'name': 'matrix_mx_puppet_slack_path_prefix', when : true }
2022-11-27 06:23:43 +00:00
- {'name': 'matrix_mx_puppet_slack_appservice_token', when : true }
2024-01-07 15:04:23 +00:00
- {'name': 'matrix_mx_puppet_slack_homeserver_address', when : true }
2022-11-27 06:23:43 +00: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 15:34:38 +00: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 04:30:50 +00:00
Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
2024-01-08 15:34:38 +00: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 05:59:37 +00:00
- {'old': 'matrix_mx_puppet_slack_docker_image_name_prefix', 'new' : 'matrix_mx_puppet_slack_docker_image_registry_prefix' }