2019-06-23 22:16:04 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Fail if required settings not defined
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-06-23 22:16:04 +00:00
|
|
|
msg: >-
|
|
|
|
You need to define a required configuration setting (`{{ item }}`).
|
|
|
|
when: "vars[item] == ''"
|
|
|
|
with_items:
|
|
|
|
- "matrix_mautrix_whatsapp_appservice_token"
|
|
|
|
- "matrix_mautrix_whatsapp_homeserver_token"
|
2022-07-07 04:54:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
- name: (Deprecation) Catch and report renamed settings
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2022-07-07 04:54:03 +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:
|
|
|
|
- {'old': 'matrix_mautrix_whatsapp_log_level', 'new': 'matrix_mautrix_whatsapp_logging_level'}
|