Move synapse rest auth url

This commit is contained in:
Alexandre Iooss 2019-03-03 08:18:50 +01:00
parent f8517c37b3
commit 3892e49971
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- hosts: synapse.adm.auro.re
vars:
mxisd_version: 1.3.1
synapse_rest_auth_url: https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py
roles:
- debian-backports
- matrix-synapse

View File

@ -23,7 +23,7 @@
- name: Install rest auth provider
get_url:
url: https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py
url: "{{ synapse_rest_auth_url }}"
dest: /usr/local/lib/python3.5/dist-packages/rest_auth_provider.py
mode: 0755
notify: Restart matrix-synapse service