Actions
Bug #1878
closedDefault kickstart template has double quotes in the wrong place - causes kernel panic
Description
This is what I had in my default ks template:
bootloader --location=mbr --append="nofb quiet splash=quiet --md5pass=<%= root_pass %>"
This generates illegal kernel boot options that cause kernel panic during the boot.
The line should be:
bootloader --location=mbr --append="nofb quiet splash=quiet" --md5pass=<%= root_pass %>
Patch:
--- a/app/views/unattended/kickstart.rhtml +++ b/app/views/unattended/kickstart.rhtml @@ -8,9 +8,9 @@ rootpw --iscrypted <%= root_pass %> firewall --service=ssh authconfig --useshadow --enablemd5 timezone UTC +bootloader --location=mbr --append="nofb quiet splash=quiet" --md5pass=<%= root_pass %> -bootloader --location=mbr --append="nofb quiet splash=quiet --md5pass=<%= root_pass %>" <% if @dynamic -%> %include /tmp/diskpart.cfg <% else -%> <%= @host.diskLayout %>
Updated by Rytis Sileika about 12 years ago
Github pull request: https://github.com/theforeman/foreman/pull/164
Updated by Ohad Levy about 12 years ago
- Category set to Unattended installations
- Target version set to 1.1
Updated by Rytis Sileika about 12 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset 0246bc1c979ea334aeb6dfd08e5c038262a0bd92.
Actions