mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
0049ddf002
This is actually authored by Julian Foad here (https://lab.trax.im/matrix/matrix-docker-ansible-deploy), but was in need of a rebase and various adjustments caused by huge playbook refactoring that landed in the past months. This rework is completely untested. Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/266
22 lines
1.2 KiB
YAML
22 lines
1.2 KiB
YAML
---
|
|
|
|
- name: Fail if required matrix-bot-draupnir variables are undefined
|
|
ansible.builtin.fail:
|
|
msg: "The `{{ item.name }}` variable must be defined and have a non-null value."
|
|
with_items:
|
|
- {'name': 'matrix_bot_draupnir_access_token', when: "{{ not matrix_bot_draupnir_pantalaimon_use }}"}
|
|
- {'name': 'matrix_bot_draupnir_management_room', when: true}
|
|
- {'name': 'matrix_bot_draupnir_container_network', when: true}
|
|
- {'name': 'matrix_bot_draupnir_homeserver_url', when: true}
|
|
- {'name': 'matrix_bot_draupnir_raw_homeserver_url', when: true}
|
|
- {'name': 'matrix_bot_draupnir_pantalaimon_username', when: "{{ matrix_bot_draupnir_pantalaimon_use }}"}
|
|
- {'name': 'matrix_bot_draupnir_pantalaimon_password', when: "{{ matrix_bot_draupnir_pantalaimon_use }}"}
|
|
when: "item.when | bool and (vars[item.name] == '' or vars[item.name] is none)"
|
|
|
|
- name: Fail if inappropriate variables are defined
|
|
ansible.builtin.fail:
|
|
msg: "The `{{ item.name }}` variable must be undefined or have a null value."
|
|
with_items:
|
|
- {'name': 'matrix_bot_draupnir_access_token', when: "{{ matrix_bot_draupnir_pantalaimon_use }}"}
|
|
when: "item.when | bool and not (vars[item.name] == '' or vars[item.name] is none)"
|