matrix-docker-ansible-deploy/roles/matrix-synapse/tasks/ext
Slavi Pantaleev 677a2fc503 Fix compatibility with ansible=6 / ansible-core=2.13
Details here: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_6.html#id36

Basically:

```yaml
- name: Prior to 2.13
  debug:
    msg: '[1] + {{ [2] }}'

- name: 2.13 and forward
  debug:
    msg: '{{ [1] + [2] }}'
```

Interestingly, we had been using the new/safe syntax in lofs of places.

We were using the broken one in many others though. Hopefully all
instances were fixed by this patch.
2022-05-18 15:43:39 +03:00
..
encryption-disabler Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
ldap-auth Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
mjolnir-antispam Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
rest-auth Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
shared-secret-auth Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
synapse-simple-antispam Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
setup.yml Add support for matrix_encryption_disabler 2022-02-12 09:25:24 +02:00