Initial configuration
This commit is contained in:
9
roles/enable-cgroup-v2/tasks/main.yml
Normal file
9
roles/enable-cgroup-v2/tasks/main.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: Check if cgroup v2 is available
|
||||
ansible.builtin.command: grep cgroup2 /proc/filesystems
|
||||
register: cgroup2_present
|
||||
|
||||
- name: Enable cgroup v2
|
||||
ansible.builtin.command: 'grubby --update-kernel=ALL --add-args="systemd.unified_cgroup_hierarchy=1"'
|
||||
become: true
|
||||
when:
|
||||
- cgroup2_present.rc != 0
|
||||
Reference in New Issue
Block a user