if you run the same playbook with win_get_url but with -vvvv what is the output?
On Friday, November 17, 2017 at 8:59:32 AM UTC+1, Jean Jordaan wrote: > > Hi all > > We're trying to get a file from a server in a playbook: > > - win_get_url: > url: https://some.domain.com/test.txt > dest: D:\test.txt > url_username: xxxxx > url_password: xxxxx > skip_certificate_validation: yes > validate_certs: no > use_proxy: no > force: yes > > This fails with the failure *SSLHandshake: Unsupported curveid: 29* > We changed to the following, and now it works: > > - name: Get release > win_shell: | > $headers = @{} > $headers.Add("Authorization", "Basic redacted") > Invoke-WebRequest -Uri "https://some.domain.com/test.txt" - > Headers $headers -OutFile "test.txt" > > > Where is *win_get_url* losing the plot? > > Regards, > Jean > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/512a3379-a6ef-44de-8167-b53a81eb8e9e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
