3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-12-22 00:33:08 +00:00

feat: add files for signalgo installation

This commit is contained in:
Pierre 'McFly' Marty
2023-12-14 16:01:44 +01:00
parent 869dd33fb2
commit 69a7847097
8 changed files with 617 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
---
- name: Fail if required mautrix-signalgo settings not defined
ansible.builtin.fail:
msg: >-
You need to define a required configuration setting (`{{ item.name }}`).
when: "item.when | bool and vars[item.name] == ''"
with_items:
- {'name': 'matrix_mautrix_signalgo_appservice_token', when: true}
- {'name': 'matrix_mautrix_signalgo_homeserver_token', when: true}
- {'name': 'matrix_mautrix_signalgo_database_hostname', when: "{{ matrix_mautrix_signalgo_database_engine == 'postgres' }}"}