win httptester: add wait for endpoint in case it is still coming up (#47326)
This commit is contained in:
parent
e758f69ce3
commit
c0546b4133
1 changed files with 11 additions and 0 deletions
|
@ -13,6 +13,17 @@
|
|||
# Override hostname defaults with httptester linked names
|
||||
- include_vars: httptester.yml
|
||||
|
||||
# Server 2008 R2 uses a 3rd party program to foward the ports and it may
|
||||
# not be ready straight away, we give it at least 5 minutes before
|
||||
# conceding defeat
|
||||
- name: make sure the port forwarder is active - Windows
|
||||
win_wait_for:
|
||||
host: ansible.http.tests
|
||||
port: 80
|
||||
state: started
|
||||
timeout: 300
|
||||
when: ansible_os_family == 'Windows'
|
||||
|
||||
- name: RedHat - Enable the dynamic CA configuration feature
|
||||
command: update-ca-trust force-enable
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
|
Loading…
Reference in a new issue