ansible/playbooks/11_reboot.yml
2024-12-11 10:06:23 +01:00

11 lines
221 B
YAML

- hosts: odroid_cluster
name: Install k3s
become: true
tasks:
- name: Reboot the server
tags: reboot
become: true
become_user: root
shell: "sleep 5 && reboot"
async: 1
poll: 0