2021-01-24 06:41:11 +00:00
|
|
|
---
|
|
|
|
- name: Fail if required Dendrite settings not defined
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2021-01-24 06:41:11 +00:00
|
|
|
msg: >-
|
|
|
|
You need to define a required configuration setting (`{{ item }}`) for using Dendrite.
|
|
|
|
when: "vars[item] == ''"
|
|
|
|
with_items:
|
2021-10-27 12:06:29 +00:00
|
|
|
- "matrix_dendrite_registration_shared_secret"
|
2021-01-24 06:41:11 +00:00
|
|
|
|
|
|
|
- name: (Deprecation) Catch and report renamed settings
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2021-01-24 06:41:11 +00:00
|
|
|
msg: >-
|
|
|
|
Your configuration contains a variable, which now has a different name.
|
|
|
|
Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
|
|
|
|
when: "item.old in vars"
|
|
|
|
with_items: []
|