mirror of
https://github.com/trailofbits/algo.git
synced 2026-09-12 20:57:48 +02:00
18 lines
326 B
YAML
18 lines
326 B
YAML
---
|
|
|
|
- name: Wait until SSH becomes ready...
|
|
local_action:
|
|
module: wait_for
|
|
port: 22
|
|
host: "{{ cloud_instance_ip }}"
|
|
search_regex: "OpenSSH"
|
|
delay: 10
|
|
timeout: 320
|
|
state: present
|
|
|
|
- name: A short pause, in order to be sure the instance is ready
|
|
pause:
|
|
seconds: 10
|
|
|
|
- include: local_ssh.yml
|