support for CentOS on the Raspberry Pi added

This commit is contained in:
Staf Wagemakers 2020-08-16 20:38:12 +02:00
parent 98473e2b09
commit d2b420588e

View File

@ -0,0 +1,8 @@
---
- name: Enable cgroup via boot commandline if not already enabled for Centos
lineinfile:
path: /boot/cmdline.txt
backrefs: yes
regexp: '^((?!.*\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\b).*)$'
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
notify: reboot