16 lines
332 B
YAML
16 lines
332 B
YAML
---
|
|
- name: Reboot Managed Hosts
|
|
hosts: all
|
|
become: true
|
|
become_method: sudo
|
|
|
|
tasks:
|
|
- name: Trigger reboot with a slight delay
|
|
ansible.builtin.shell: "sleep 5 && reboot"
|
|
async: 0
|
|
poll: 0
|
|
ignore_errors: true
|
|
|
|
- name: Reboot command issues, exiting play
|
|
ansible.builtin.meta: end_host
|