3b3c612a0433048127a0aa15fd070ca89c1fca03
[armband.git] / patches / opnfv-fuel / multiarch-efi / 0001-FIXME-deploy-EFI-Skip-re-ordering-boot-via-IPMI.patch
1 From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
2 Date: Fri, 9 Sep 2016 17:55:38 +0200
3 Subject: [PATCH] FIXME: deploy: EFI: Skip re-ordering boot via IPMI
4
5 On EFI systems deploys, altering the boot order via IPMI causes
6 issues on some specific targets. Until we agree on an uniform
7 solution for EFI systems + IPMI boot order handling, just skip
8 altering it via IPMI.
9
10 Related-bug: https://jira.opnfv.org/browse/ARMBAND-71
11
12 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
13 ---
14  deploy/deploy_env.py | 4 +++-
15  1 file changed, 3 insertions(+), 1 deletion(-)
16
17 diff --git a/deploy/deploy_env.py b/deploy/deploy_env.py
18 index 93dc395..1d2dfeb 100644
19 --- a/deploy/deploy_env.py
20 +++ b/deploy/deploy_env.py
21 @@ -255,7 +255,9 @@ class CloudDeploy(object):
22
23      def set_boot_order_nodes(self):
24          self.power_off_nodes()
25 -        self.set_boot_order(['pxe', 'disk'])
26 +        # ARMBAND FIXME: See https://jira.opnfv.org/browse/ARMBAND-71
27 +        # Until we choose an uniform design on EFI systems, just disable it
28 +        # self.set_boot_order(['pxe', 'disk'])
29          self.power_on_nodes()
30
31      def get_put_deploy_log(self):