We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 491439d commit 8bf2ffcCopy full SHA for 8bf2ffc
olam/check_instance_available.yml
@@ -13,13 +13,16 @@
13
14
tasks:
15
16
- - name: Wait for systems to become reachable using ssh
17
- ansible.builtin.wait_for:
18
- port: 22
19
- host: '{{ (ansible_ssh_host | default(ansible_host)) | default(inventory_hostname) }}'
20
- search_regex: OpenSSH
21
- delay: 10
22
- timeout: 300
+ - name: Wait for systems to become reachable and usable
+ ansible.builtin.wait_for_connection:
+
+ # - name: Wait for systems to become reachable using ssh
+ # ansible.builtin.wait_for:
+ # port: 22
+ # host: '{{ (ansible_ssh_host | default(ansible_host)) | default(inventory_hostname) }}'
23
+ # search_regex: OpenSSH
24
+ # delay: 10
25
+ # timeout: 300
26
27
- name: Get a set of all available facts
28
ansible.builtin.setup:
0 commit comments