Fix Setup on BareMetal

Previously, StarlingX provided an option to select between Standard
Security and Extended Security. This was the third option.

This commit will remove this third option from the boot_lines.

Change-Id: I56877a4653ed008cafa69dcf1f71ffda5d091d69
This commit is contained in:
Lemus Contreras, Cristopher J 2019-08-30 14:15:15 -07:00 committed by Cristopher Lemus
parent 1182d564d6
commit a446068db7
1 changed files with 4 additions and 4 deletions

View File

@ -162,13 +162,13 @@ class PxeServer(object):
boot_lines = dict()
if configuration_type == 'simplex':
boot_lines = grub_dict['aio']['serial']['standard']
boot_lines = grub_dict['aio']['serial']
elif configuration_type == 'duplex':
boot_lines = grub_dict['aio']['serial']['standard']
boot_lines = grub_dict['aio']['serial']
elif configuration_type == 'multinode_controller_storage':
boot_lines = grub_dict['standard']['serial']['standard']
boot_lines = grub_dict['standard']['serial']
elif configuration_type == 'multinode_dedicated_storage':
boot_lines = grub_dict['standard']['serial']['standard']
boot_lines = grub_dict['standard']['serial']
prefix = 'uefi/images'
linuxefi_cmd = boot_lines['linuxefi']