You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
215 B

  1. ---
  2. - hosts: all
  3. become: False
  4. gather_facts: False
  5. tasks:
  6. - name: Wait until SSH is available
  7. wait_for:
  8. host: "{{ ansible_ssh_host }}"
  9. port: 22
  10. timeout: 240
  11. delegate_to: localhost