main.yml 228 B

12345678910111213
  1. ---
  2. - name: Reboot server
  3. shell: "sleep 5 && /sbin/reboot"
  4. async: 1
  5. poll: 0
  6. become: true
  7. - name: Wait for the reboot to complete
  8. wait_for_connection:
  9. connect_timeout: 20
  10. sleep: 5
  11. delay: 5
  12. timeout: 300