Slavi Pantaleev

Results 202 comments of Slavi Pantaleev

Fixing the upstream documentation (if it's lacking) would have the most impact, as that would help all users of the bridge, not just playbook users of the bridge. We may...

We specify some wanted services in `matrix_nginx_proxy_systemd_wanted_services_list` (which go to `Wanted=` in the `matrix-nginx-proxy.service` file) in `group_vars/matrix_servers`: https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/4e4fb98a65474fd058c61a838db6ac312a09e7df/group_vars/matrix_servers#L1462-L1471 We might define additional *wanted* services there. ---------- We have `matrix_nginx_proxy_systemd_required_services_list` as...

Adding this to the `matrix_nginx_proxy_systemd_wanted_services_list` list in `group_vars/matrix_servers` may solve this particular problem: ```diff matrix_nginx_proxy_systemd_wanted_services_list: | {{ ['matrix-' + matrix_homeserver_implementation + '.service'] + (['matrix-corporal.service'] if matrix_corporal_enabled else []) + (['matrix-ma1sd.service']...

`matrix-nginx-proxy` is listed as a dependency in `matrix_appservice_webhooks_systemd_required_services_list` in `group_vars/matrix_servers`. Likewise for `matrix_dimension_systemd_required_services_list`. The fact that the playbook tries to start `matrix-appservice-webhooks` and `matrix-dimension` before `matrix-nginx-proxy` may be suboptimal, but...

I've updated the wanted services list for `matrix-nginx-proxy` and `matrix-grafana` in 0fb881deb578, which hopefully improves the situation. I'm still not sure why your error says: > 2022/01/08 17:11:01 [emerg] 1#1:...

You can improve your situation by redefining `matrix_nginx_proxy_systemd_wanted_services_list`. Unfortunately, you can't easily **add** stuff to the list. We should probably introduce an **additional wanted services** variable (e.g. `matrix_nginx_proxy_systemd_additional_wanted_services_list`), which gets...

It probably makes sense to add it, but it doesn't seem like something that many users will run. Reasoning: - "Note: this is not a guide on how to host...

Perhaps a good solution is to take your data point, shift it a bit (or reduce the latitude/longitude precision a bit) and use that for getting the tile. At the...

Sure! All of the bridge roles we have now have been contributed by the community as well. You basically need to look at which current (`matrix-bridge-*`) role is most similar...

Right now, we're not doing any automated testing. We used to have some Ansible linting CI job (#1469, #1471), but it was unstable and not very useful, so I've gotten...