Merge pull request #2332 from mochman/master

add 'not' to fail check for s3_storage_provider
This commit is contained in:
Slavi Pantaleev 2022-12-10 15:22:50 +02:00 committed by GitHub
commit 905ffd091e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,4 +16,4 @@
ansible.builtin.fail:
msg: >-
`matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url` needs to look like a URL (`http://` or `https://` prefix).
when: "matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url.startswith('http')"
when: "not matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url.startswith('http')"