mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
11 lines
221 B
YAML
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 |