mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 20:57:41 +01:00
synapse role workers setup: execute the endpoint extraction locally
Thanks @maxklenk !
This commit is contained in:
parent
851c25c47f
commit
d5932ca393
@ -1,14 +1,20 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Download synapse workers doc
|
- name: Download synapse workers doc
|
||||||
get_url:
|
local_action:
|
||||||
|
module: get_url
|
||||||
url: https://github.com/matrix-org/synapse/raw/master/docs/workers.md
|
url: https://github.com/matrix-org/synapse/raw/master/docs/workers.md
|
||||||
dest: "{{ role_path }}/files/workers.upstream-documentation.md"
|
dest: "{{ role_path }}/files/workers.upstream-documentation.md"
|
||||||
|
vars:
|
||||||
|
ansible_become: no
|
||||||
|
|
||||||
- name: Download synapse workers doc and convert into YAML
|
- name: Download synapse workers doc and convert into YAML
|
||||||
shell:
|
local_action:
|
||||||
|
module: shell
|
||||||
cmd: "awk -f '{{ role_path }}/files/workers-doc-to-yaml.awk' -- '{{ role_path }}/files/workers.upstream-documentation.md' > '{{ role_path }}/vars/workers.yml'"
|
cmd: "awk -f '{{ role_path }}/files/workers-doc-to-yaml.awk' -- '{{ role_path }}/files/workers.upstream-documentation.md' > '{{ role_path }}/vars/workers.yml'"
|
||||||
creates: "{{ role_path }}/vars/workers.yml"
|
creates: "{{ role_path }}/vars/workers.yml"
|
||||||
|
vars:
|
||||||
|
ansible_become: no
|
||||||
|
|
||||||
- name: Load list of available worker apps and endpoints
|
- name: Load list of available worker apps and endpoints
|
||||||
include_vars: "{{ role_path }}/vars/workers.yml"
|
include_vars: "{{ role_path }}/vars/workers.yml"
|
||||||
|
Loading…
Reference in New Issue
Block a user