This commit is contained in:
Pim Kunis 2023-04-14 09:28:34 +02:00
commit 1e1c911e13

20
tasks/main.yml Normal file
View file

@ -0,0 +1,20 @@
---
- name: Wait for SSH connection
wait_for:
state: started
port: 22
host: "{{ ansible_host }}"
timeout: 300
connect_timeout: 300
search_regex: OpenSSH
delegate_to: localhost
- name: Wait for cloud-init to finish
shell:
cmd: "cloud-init status --wait"
register: cloudinit
changed_when: "'.' in cloudinit.stdout"
- name: Gather facts
setup: