Hi all!
We've been working on a playbook that does a dist upgrade and then performs a reboot. This has been problematic and results in a failure return status that sometimes means it worked and sometimes not. What is the trick to reboots -- being able to smoothly reconnect after a reboot signal?
---
- name: reboot the server
command: shutdown -r now "Ansible updates triggered"
async: 0
poll: 0
ignore_errors: true
tags:
- reboot
- name: waiting for server to come back
sudo: false
local_action: >
wait_for:
host: {{ inventory_hostname }}
timeout: 300
delay: 0
port: 22
state: started
tags:
- reboot
Is there a technique that is commonly used that results in better plays that result in success?
Regards,
Patrick