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.
|
- ---
-
- - name: reboot
- command: shutdown --no-wall -r +1
- async: 0
- poll: 0
- ignore_errors: true
-
- - name: wait for ssh
- local_action: wait_for host={{ ansible_host | default(inventory_hostname) }} port=22 search_regex=OpenSSH delay={{ reboot_delay }} timeout={{ reboot_timeout }} state=started
-
- - name: try to connect to ssh
- setup:
- retries: 10
- delay: 5
|