2019-06-07 11:04:59 +00:00
---
- name : Fail if required settings not defined
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2019-06-07 11:04:59 +00:00
msg : >-
You need to define a required configuration setting (`{{ item }}`).
when : "vars[item] == ''"
with_items :
2022-03-08 17:19:28 +00:00
- "matrix_mautrix_facebook_public_endpoint"
2019-06-07 11:04:59 +00:00
- "matrix_mautrix_facebook_appservice_token"
- "matrix_mautrix_facebook_homeserver_token"
2021-01-20 08:12:51 +00:00
2022-09-27 08:38:33 +00:00
- when : "matrix_mautrix_facebook_database_engine == 'sqlite' and matrix_mautrix_facebook_docker_image.endswith(':da1b4ec596e334325a1589e70829dea46e73064b')"
block :
2021-11-15 06:18:39 +00:00
- name : Inject warning if on an old SQLite-supporting version
2022-07-18 07:39:08 +00:00
ansible.builtin.set_fact :
2022-11-04 14:19:17 +00:00
devture_playbook_runtime_messages_list : |
2021-01-20 08:12:51 +00:00
{{
2022-11-04 14:19:17 +00:00
devture_playbook_runtime_messages_list | default([])
2021-01-20 08:12:51 +00:00
+
[
2021-11-15 06:18:39 +00:00
"NOTE: Your mautrix-facebook bridge is still on SQLite and on the last version that supported it, before support was dropped. Support has been subsequently re-added in v0.3.2, so we advise you to upgrade (by removing your `matrix_mautrix_facebook_docker_image` definition from vars.yml)"
2021-01-20 08:12:51 +00:00
]
}}