mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-04 21:24:24 -07:00
Troubleshooting has reduced us to this
This commit is contained in:
parent
224d596336
commit
9abef1a1d7
1 changed files with 12 additions and 2 deletions
|
@ -96,12 +96,22 @@
|
||||||
register: get_url_result
|
register: get_url_result
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
|
|
||||||
|
- name: TROUBLESHOOTING
|
||||||
|
shell: curl https://foo.sni.velox.ch/ > /var/tmp/velox.html
|
||||||
|
register: trouble
|
||||||
|
ignore_errors: True
|
||||||
|
when: "{{ python_has_ssl_context }}"
|
||||||
|
|
||||||
|
- debug: var=trouble
|
||||||
|
when: "{{ python_has_ssl_context }}"
|
||||||
|
|
||||||
|
- debug: var=get_url_result
|
||||||
|
when: "{{ python_has_ssl_context }}"
|
||||||
|
|
||||||
- command: "grep 'sent the following TLS server name indication extension' {{ output_dir}}/sni.html"
|
- command: "grep 'sent the following TLS server name indication extension' {{ output_dir}}/sni.html"
|
||||||
register: data_result
|
register: data_result
|
||||||
when: "{{ python_has_ssl_context }}"
|
when: "{{ python_has_ssl_context }}"
|
||||||
|
|
||||||
# If distros start backporting SNI, can make a new conditional based on whether this works:
|
|
||||||
# python -c 'from ssl import SSLContext'
|
|
||||||
- debug: var=get_url_result
|
- debug: var=get_url_result
|
||||||
- name: Assert that SNI works with this python version
|
- name: Assert that SNI works with this python version
|
||||||
assert:
|
assert:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue