summaryrefslogtreecommitdiffstats
path: root/patches/opnfv-fuel/0018-states-maas-rm-Ubuntu-boot-entry-on-EFI-systems.patch
blob: 044331821e52cbbc51a41fa93bdd452404cdec04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Date: Thu, 24 Aug 2017 04:09:59 +0200
Subject: [PATCH] states/maas: rm Ubuntu boot entry on EFI systems

On EFI-enabled systems, grub-install from grub-efi-* package
installs a boot entry named "ubuntu".

MaaS relies on IPMI to set boot order to PXE first; however
on systems with buggy firmware or without full IPMI support,
that fails, leading to booting Ubuntu from hard disk instead.

Work around this by clearing any previous Ubuntu boot entry
from board flash.

NOTE: This only runs against nodes that are online from a
previous deploy, and already automatically registered with
the new Salt master node.

Closes: ARMBAND-47

Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
---
 mcp/config/states/maas | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/mcp/config/states/maas b/mcp/config/states/maas
index 9e0093b..4f27984 100755
--- a/mcp/config/states/maas
+++ b/mcp/config/states/maas
@@ -44,6 +44,11 @@ function maas_fixup() {
   return 0
 }

+# UEFI: Clean up Ubuntu boot entry if kvm node online from previous deploy
+salt -C 'kvm* or cmp*' cmd.run "(which efibootmgr > /dev/null 2>&1 && \
+  efibootmgr | grep -oP '(?<=Boot)[0-9]+(?=.*ubuntu)' | \
+  xargs -I{} efibootmgr --delete-bootnum --bootnum {}) || true"
+
 # MaaS rack/region controller, node commissioning
 salt -C 'mas01*' cmd.run "add-apt-repository ppa:maas/stable"