2020-07-20 13:13:08 +02:00
|
|
|
---
|
|
|
|
|
2022-11-27 07:23:43 +01:00
|
|
|
- name: Fail if required matrix-reminder-bot settings not defined
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.fail:
|
2020-07-20 13:13:08 +02:00
|
|
|
msg: >-
|
|
|
|
You need to define a required configuration setting (`{{ item }}`).
|
2022-11-27 07:23:43 +01:00
|
|
|
when: "item.when | bool and vars[item.name] == ''"
|
2020-07-20 13:13:08 +02:00
|
|
|
with_items:
|
2022-11-27 07:23:43 +01:00
|
|
|
- {'name': 'matrix_bot_matrix_reminder_bot_matrix_user_password', when: true}
|
|
|
|
- {'name': 'matrix_bot_matrix_reminder_bot_reminders_timezone', when: true}
|
2024-01-02 14:56:56 +01:00
|
|
|
- {'name': 'matrix_bot_matrix_reminder_bot_container_network', when: true}
|
|
|
|
- {'name': 'matrix_bot_matrix_reminder_bot_matrix_homeserver_url', when: true}
|
2022-11-27 07:23:43 +01:00
|
|
|
- {'name': 'matrix_bot_matrix_reminder_bot_database_hostname', when: "{{ matrix_bot_matrix_reminder_bot_database_engine == 'postgres' }}"}
|
2022-01-07 12:17:39 +01:00
|
|
|
|
2022-11-27 07:23:43 +01:00
|
|
|
- name: (Deprecation) Catch and report renamed matrix-reminder-bot settings
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.fail:
|
2022-01-07 12:17:39 +01: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_bot_matrix_reminder_bot_container_self_build', 'new': 'matrix_bot_matrix_reminder_bot_container_image_self_build'}
|