mirror of
https://github.com/vale981/matrix-docker-ansible-deploy
synced 2025-03-06 18:31:42 -05:00
6 lines
285 B
Bash
Executable file
6 lines
285 B
Bash
Executable file
#!/bin/sh
|
|
# Fetch the synapse worker documentation and extract endpoint URLs
|
|
# matrix-org/synapse master branch points to current stable release
|
|
|
|
URL=https://github.com/matrix-org/synapse/raw/master/docs/workers.md
|
|
curl -L ${URL} | awk -f workers-doc-to-yaml.awk > ../vars/workers.yml
|