Skip to content

Commit

Permalink
Merge pull request #30 from cisco-open/extend_ssh_readiness_timeout
Browse files Browse the repository at this point in the history
Extend default ssh readiness timeout
  • Loading branch information
przsus authored Nov 4, 2024
2 parents c447c37 + 7124629 commit e0377e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/common/tasks/wait_for_ssh_readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

---

- name: "Wait for device ssh server readiness, timeout in seconds: {{ ssh_readiness_timeout | default(600) }}"
- name: "Wait for device ssh server readiness, timeout in seconds: {{ ssh_readiness_timeout | default(900) }}"
ansible.builtin.wait_for:
delay: "{{ ssh_readiness_delay | default(60) }}"
timeout: "{{ ssh_readiness_timeout | default(600) }}"
timeout: "{{ ssh_readiness_timeout | default(900) }}"
state: started
host: "{{ instance_item.mgmt_public_ip }}"
port: 22
Expand Down

0 comments on commit e0377e1

Please sign in to comment.