mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-25 06:53:00 +02:00
* refactored local actions to cleaner syntax * openssl commands folded * removed unnecessary local_action's
16 lines
301 B
YAML
16 lines
301 B
YAML
---
|
|
|
|
- name: Wait until SSH becomes ready...
|
|
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: 20
|
|
|
|
- include: local_ssh.yml
|