2019-05-10 16:25:59 +08:00
|
|
|
---
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Wait until SSH is available
|
|
|
|
hosts: all
|
2024-08-28 13:30:56 +08:00
|
|
|
become: false
|
|
|
|
gather_facts: false
|
2019-05-10 16:25:59 +08:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Wait until SSH is available
|
|
|
|
wait_for:
|
2022-06-09 22:07:42 +08:00
|
|
|
host: "{{ ansible_host }}"
|
2019-05-10 16:25:59 +08:00
|
|
|
port: 22
|
|
|
|
timeout: 240
|
|
|
|
delegate_to: localhost
|