14 lines
203 B
YAML
14 lines
203 B
YAML
|
|
---
|
||
|
|
- name: Reboot the Raspberries
|
||
|
|
hosts: all
|
||
|
|
roles:
|
||
|
|
- common
|
||
|
|
become: yes
|
||
|
|
|
||
|
|
tasks:
|
||
|
|
|
||
|
|
- name: Rebooting...
|
||
|
|
reboot:
|
||
|
|
msg: "Reboot initiated by Ansible"
|
||
|
|
test_command: uptime
|