소스 검색
Merge pull request #2332 from mochman/master
add 'not' to fail check for s3_storage_provider
pull/2333/head
Slavi Pantaleev
3 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
roles/custom/matrix-synapse/tasks/ext/s3-storage-provider/validate_config.yml
|
|
|
@@ -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')" |