mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
15 lines
390 B
YAML
15 lines
390 B
YAML
|
---
|
||
|
|
||
|
- name: Activating cgroup on Raspbian
|
||
|
lineinfile:
|
||
|
path: /boot/cmdline.txt
|
||
|
regexp: '^(.*rootwait)$'
|
||
|
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
|
||
|
backrefs: true
|
||
|
when: ( ansible_facts.architecture is search "arm" )
|
||
|
|
||
|
- name: Rebooting on Raspbian
|
||
|
shell: reboot now
|
||
|
ignore_errors: true
|
||
|
when: ( ansible_facts.architecture is search "arm" )
|