12 lines
200 B
YAML
12 lines
200 B
YAML
---
|
|
- name: Reboot machine
|
|
hosts: "{{ Daily_Reboot_Hosts }}"
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Reboot machine
|
|
reboot:
|
|
when: True
|
|
become: true
|
|
args:
|
|
- "--no-wall" |