summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/wait.yml
blob: 3f35e55c2d633044af422175abb51edbc68ffc54 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Wait for guest to become alive
  wait_for:
    delay: 240
    connect_timeout: 3
    sleep: 15
    port: 22
    host: '{{ vm_fqdn }}'
    search_regex: OpenSSH
  connection: local