Actions
Bug #36361
closedkickstart_kernel_options snippet breaks UEFI VLAN tagged provisioning
Difficulty:
Triaged:
No
Bugzilla link:
Pull request:
Description
The current snippet renders vlan interfaces as "vlan=vlanXXX:ensY" which is against acceptable options. It should be "vlan=ensY.XXX:ensY". The host ends up with vlanXXX interfaces with no IPs and no links
I believe the snippet should be changed as follows:
from
options.push("vlan=vlan#{iface.tag}:#{iface.attached_to}")
to
options.push("vlan=#{iface.attached_to}.#{iface.tag}:#{iface.attached_to}")
Updated by The Foreman Bot over 1 year ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/9700 added
Updated by Alexey Masolov over 1 year ago
- Status changed from Ready For Testing to Closed
Applied in changeset foreman|a1bf1698c54e9d01f780ffc9c25a7a515e27f993.
Updated by The Foreman Bot about 1 year ago
- Assignee set to Ewoud Kohl van Wijngaarden
Actions