Blame SOURCES/bz2010709-2-fence_amt_ws-boot-option.patch

568c0a
From 9812473270e9a404c632358c1debfa4a1fb440fe Mon Sep 17 00:00:00 2001
568c0a
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
568c0a
Date: Wed, 20 Oct 2021 15:46:42 +0200
568c0a
Subject: [PATCH] fence_amt_ws: fix --boot-option (choices are uppercased while
568c0a
 getting parsed)
568c0a
568c0a
---
568c0a
 agents/amt_ws/fence_amt_ws.py | 8 ++++----
568c0a
 1 file changed, 4 insertions(+), 4 deletions(-)
568c0a
568c0a
diff --git a/agents/amt_ws/fence_amt_ws.py b/agents/amt_ws/fence_amt_ws.py
568c0a
index 122cec309..5e7452a97 100755
568c0a
--- a/agents/amt_ws/fence_amt_ws.py
568c0a
+++ b/agents/amt_ws/fence_amt_ws.py
568c0a
@@ -146,13 +146,13 @@ def set_boot_order(_, client, options):
568c0a
     wsman = 'http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd'
568c0a
     namespace = CIM_BootConfigSetting
568c0a
 
568c0a
-    if options["--boot-option"] == "pxe":
568c0a
+    if options["--boot-option"] == "PXE":
568c0a
         device = "Intel(r) AMT: Force PXE Boot"
568c0a
-    elif options["--boot-option"] in ["hd", "hdsafe"]:
568c0a
+    elif options["--boot-option"] in ["HD", "HDSAFE"]:
568c0a
         device = "Intel(r) AMT: Force Hard-drive Boot"
568c0a
-    elif options["--boot-option"] == "cd":
568c0a
+    elif options["--boot-option"] == "CD":
568c0a
         device = "Intel(r) AMT: Force CD/DVD Boot"
568c0a
-    elif options["--boot-option"] == "diag":
568c0a
+    elif options["--boot-option"] == "DIAG":
568c0a
         device = "Intel(r) AMT: Force Diagnostic Boot"
568c0a
     else:
568c0a
         logging.error('Boot device: %s not supported.', \