Simplify Ubuntu to reboot no matter what

This commit is contained in:
David Putzolu
2020-05-31 10:24:12 -07:00
parent a9affdf9e6
commit 952768e26e

View File

@@ -8,21 +8,7 @@
when: when:
- ansible_distribution == 'Ubuntu' - ansible_distribution == 'Ubuntu'
- name: Read /proc/cmdline to check for cgroups already running - name: Reboot to enable cgroups
slurp:
src: /proc/cmdline
register: slurped_cmdline
when:
- ansible_distribution == 'Ubuntu'
- name: Decode slurped command line
set_fact:
cmdline: "{{ slurped_cmdline.content | b64decode }}"
when:
- ansible_distribution == 'Ubuntu'
- name: Reboot to enable cgroups if not already enabled
reboot: reboot:
when: when:
- ansible_distribution == 'Ubuntu' - ansible_distribution == 'Ubuntu'
- '"cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory" not in cmdline'