summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/wait.yml
blob: 7d516cecd67c6bc8ff1d6750f08085e7fb3f401b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: Wait for guest to become alive
  wait_for:
    #delay: 240
    connect_timeout: 3
    sleep: 15
    port: 22
    host: '{{ ip_address }}'
    search_regex: OpenSSH
    timeout: 900
  #connection: local
  delegate_to: localhost
  tags:
    - init_ssh