Browse Source
Merge pull request #4016 from mcntrn/download_file_basic_auth
Added optional basic auth parameters
pull/4020/head
Chad Swenson
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
roles/download/tasks/download_file.yml
|
|
@ -23,6 +23,9 @@ |
|
|
|
owner: "{{ download.owner|default(omit) }}" |
|
|
|
mode: "{{ download.mode|default(omit) }}" |
|
|
|
validate_certs: "{{ download_validate_certs }}" |
|
|
|
url_username: "{{ download.username|default(omit) }}" |
|
|
|
url_password: "{{ download.password|default(omit) }}" |
|
|
|
force_basic_auth: "{{ download.force_basic_auth|default(omit) }}" |
|
|
|
register: get_url_result |
|
|
|
until: "'OK' in get_url_result.msg or 'file already exists' in get_url_result.msg" |
|
|
|
retries: 4 |
|
|
|