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 

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/7a712df6-3b62-4ef4-84cb-302315668f65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to