Project

General

Profile

Actions

Bug #36361

closed

kickstart_kernel_options snippet breaks UEFI VLAN tagged provisioning

Added by Alexey Masolov over 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
Category:
Templates
Target version:
-
Difficulty:
Triaged:
No
Fixed in Releases:
Found in Releases:

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}")

Actions

Also available in: Atom PDF