From a446068db76522d4ec2315491996258cea1e7a36 Mon Sep 17 00:00:00 2001 From: "Lemus Contreras, Cristopher J" Date: Fri, 30 Aug 2019 14:15:15 -0700 Subject: [PATCH] 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 --- automated-robot-suite/Libraries/pxe_server.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/automated-robot-suite/Libraries/pxe_server.py b/automated-robot-suite/Libraries/pxe_server.py index 3506be6..8bb592b 100644 --- a/automated-robot-suite/Libraries/pxe_server.py +++ b/automated-robot-suite/Libraries/pxe_server.py @@ -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']