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.
2 parents 81666ce + 07a0815 commit 2dd5901Copy full SHA for 2dd5901
playbooks/bootstrap.yml
@@ -1,4 +1,12 @@
1
---
2
+- name: Check remote connections
3
+ hosts: "{{ edpm_override_hosts | default('all', true) }}"
4
+ gather_facts: false
5
+ tasks:
6
+ - name: Wait for connection
7
+ ansible.builtin.wait_for_connection:
8
+ delay: "{{ edpm_wait_for_connection_delay | default(10) }}"
9
+ timeout: "{{ edpm_wait_for_connection_timeout | default(600) }}"
10
11
- name: Bootstrap node
12
hosts: "{{ edpm_override_hosts | default('all', true) }}"
0 commit comments