mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-18 09:07:10 +00:00
Minor fixups for the matrix-synapse-rest-auth handling
This commit is contained in:
parent
2b2e996cf9
commit
25becc63d5
@ -75,7 +75,7 @@ matrix_synapse_additional_loggers: []
|
|||||||
# any password providers have been enabled or not.
|
# any password providers have been enabled or not.
|
||||||
matrix_synapse_password_providers_enabled: false
|
matrix_synapse_password_providers_enabled: false
|
||||||
|
|
||||||
# Enable this to activate the REST auth password provider module
|
# Enable this to activate the REST auth password provider module.
|
||||||
# See: https://github.com/kamax-io/matrix-synapse-rest-auth
|
# See: https://github.com/kamax-io/matrix-synapse-rest-auth
|
||||||
matrix_synapse_ext_password_provider_rest_auth_enabled: false
|
matrix_synapse_ext_password_provider_rest_auth_enabled: false
|
||||||
matrix_synapse_ext_password_provider_rest_auth_download_url: "https://raw.githubusercontent.com/kamax-io/matrix-synapse-rest-auth/v0.1.1/rest_auth_provider.py"
|
matrix_synapse_ext_password_provider_rest_auth_download_url: "https://raw.githubusercontent.com/kamax-io/matrix-synapse-rest-auth/v0.1.1/rest_auth_provider.py"
|
||||||
|
@ -8,9 +8,11 @@
|
|||||||
get_url:
|
get_url:
|
||||||
url: "{{ matrix_synapse_ext_password_provider_rest_auth_download_url }}"
|
url: "{{ matrix_synapse_ext_password_provider_rest_auth_download_url }}"
|
||||||
dest: "{{ matrix_synapse_ext_path }}/rest_auth_provider.py"
|
dest: "{{ matrix_synapse_ext_path }}/rest_auth_provider.py"
|
||||||
|
force: true
|
||||||
mode: 0440
|
mode: 0440
|
||||||
owner: "{{ matrix_user_username }}"
|
owner: "{{ matrix_user_username }}"
|
||||||
group: "{{ matrix_user_username }}"
|
group: "{{ matrix_user_username }}"
|
||||||
|
when: "matrix_synapse_ext_password_provider_rest_auth_enabled"
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
matrix_synapse_password_providers_enabled: true
|
matrix_synapse_password_providers_enabled: true
|
||||||
|
Loading…
Reference in New Issue
Block a user