15 lines
245 B
YAML
Executable File
15 lines
245 B
YAML
Executable File
---
|
|
- name: Reboot the Raspberries
|
|
hosts: kubernetes
|
|
gather_facts: no
|
|
roles:
|
|
- common
|
|
become: yes
|
|
|
|
tasks:
|
|
|
|
- name: Rebooting...
|
|
ansible.builtin.reboot:
|
|
msg: "Reboot initiated by Ansible"
|
|
test_command: uptime
|