grub-installer ignores grub2/linux_cmdline_default in preseed
Bug #581796 reported by
joschi
This bug affects 23 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
grub-installer (Ubuntu) |
Triaged
|
Medium
|
Unassigned |
Bug Description
Binary package hint: grub-installer
Description: Ubuntu 10.04
Release: 10.04
When automatically installing a system with a preseed file, grub-installer seems to ignore settings for grub2/linux_
I have tried the following two lines in my preseed file, but none of them worked:
grub-pc grub2/linux_
d-i grub2/linux_
When running `debconf-
grub-pc grub2/linux_
This seems to be an error (or at least an undocumented nuisance) of grub-installer ignoring the settings in the preseed file.
Changed in grub-installer (Ubuntu): | |
status: | New → Triaged |
importance: | Undecided → Medium |
To post a comment you must log in.
Note to anyone trying to make this work, we are using these lines in preseed/ late_command: CMDLINE_ LINUX_DEFAULT= \).*/\1\ "\"/g' /target/ etc/default/ grub; \
sed -i 's/\(GRUB_
in-target bash -c 'update-grub'; \
To set GRUB_CMDLINE_ LINUX_DEFAULT to "". I read in another bug that the intended behaviour for Ubuntu Server was to not have the splash, only the quiet option. Our systems got installed using both quiet and splash all the time using netinst.
This late_command allows us to have a completely verbose boot process.