Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c98b6c2

Browse files
committedSep 26, 2024·
Handle missing GRUB_CMDLINE_LINUX_DEFAULT variable
If GRUB_CMDLINE_LINUX_DEFAULT is unset in /etc/default/grub, initialise it from GRUB_CMDLINE_LINUX. We write back the updated kernel command line as GRUB_CMDLINE_LINUX_DEFAULT, so it will only apply to normal (non-rescue) boots. Fixes #18.
1 parent 6d1cbb4 commit c98b6c2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎roles/grubcmdline/tasks/main.yml

+14
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,24 @@
2626
grub_cmdline_linux_default: >-
2727
{{ grub_result.content | b64decode | regex_search('^GRUB_CMDLINE_LINUX_DEFAULT.*$', multiline=True) | regex_replace('^GRUB_CMDLINE_LINUX_DEFAULT="(.*)"$', '\1') }}
2828
29+
- name: Set fact containing GRUB_CMDLINE_LINUX
30+
ansible.builtin.set_fact:
31+
grub_cmdline_linux: >-
32+
{{ grub_result.content | b64decode | regex_search('^GRUB_CMDLINE_LINUX=.*$', multiline=True) | regex_replace('^GRUB_CMDLINE_LINUX="(.*)"$', '\1') }}
33+
2934
- name: Display GRUB_CMDLINE_LINUX_DEFAULT
3035
ansible.builtin.debug:
3136
var: grub_cmdline_linux_default
3237

38+
- name: Display GRUB_CMDLINE_LINUX
39+
ansible.builtin.debug:
40+
var: grub_cmdline_linux
41+
42+
- name: Initialise GRUB_CMDLINE_LINUX_DEFAULT if unset
43+
ansible.builtin.set_fact:
44+
grub_cmdline_linux_default: "{{ grub_cmdline_linux }}"
45+
when: grub_cmdline_linux_default == 'None'
46+
3347
- name: Determine which parameters need removing
3448
# We use a regex here so you can remove parameters regardless of their value, e.g to remove iommu=on you
3549
# could use the regex: ^iommu=

0 commit comments

Comments
 (0)
Please sign in to comment.