matrix-docker-ansible-deploy/roles/matrix-bridge-appservice-irc/tasks
Slavi Pantaleev a4a612c337
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-06-11 17:57:58 +02:00
..
init.yml Fix compatibility with ansible=6 / ansible-core=2.13 2022-06-11 17:57:58 +02:00
main.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
migrate_nedb_to_postgres.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
setup_install.yml Ensure git cloning when self-building is done with the matrix user, not root 2022-04-14 08:52:37 +03:00
setup_uninstall.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
validate_config.yml self-build consistency: add deprecation warnings 2022-01-07 13:17:39 +02:00