Merge pull request #4016 from mcntrn/download_file_basic_auth
Added optional basic auth parameters
This commit is contained in:
commit
880c9c6b48
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue