13 lines
265 B
Markdown
13 lines
265 B
Markdown
# ansible-role-cloudinit-wait
|
|
|
|
Ansible role to wait for a cloud-init bootstrapped host to initialize.
|
|
|
|
Disable fact gathering before calling this role:
|
|
|
|
```yaml
|
|
- name: Wait for servers to come up
|
|
hosts: ...
|
|
gather_facts: no
|
|
roles:
|
|
- 'cloudinit-wait'
|
|
```
|