From a6dda7564eecfd0582e39e2f175538f70cd18ee7 Mon Sep 17 00:00:00 2001
From: Michael Prokop <mprokop@sipwise.com>
Date: Thu, 18 Oct 2018 14:11:42 +0200
Subject: [PATCH] TT#45709 Disable Secure Boot support when building Grml ISO

The Secure Boot enabled GRUB from Ubuntu breaks EFI boot on
Dell servers (e.g. on PowerEdge R330). Until we know how
to solve this disable Secure Boot support within our ISOs.

Change-Id: I3cf96ca40b6e66c591b60b73e77ac164fd79f472
---
 grml_build/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grml_build/Dockerfile b/grml_build/Dockerfile
index 058fbb8..4682f5d 100644
--- a/grml_build/Dockerfile
+++ b/grml_build/Dockerfile
@@ -29,7 +29,7 @@ RUN apt-get update && apt-get install --assume-yes \
   syslinux \
   xorriso
 
-RUN echo "./grml-live -s buster -a amd64 -c GRMLBASE,SIPWISE,AMD64 -t /code/grml-live/templates/ -o /grml/ -r grml-sipwise -v 0.42" >/root/.bash_history
+RUN echo "SECURE_BOOT=disable ./grml-live -s buster -a amd64 -c GRMLBASE,SIPWISE,AMD64 -t /code/grml-live/templates/ -o /grml/ -r grml-sipwise -v 0.42" >/root/.bash_history
 RUN echo "export LIVE_CONF=/code/grml-live/etc/grml/grml-live.conf" >>/root/.bash_history
 RUN echo "export SCRIPTS_DIRECTORY=/code/grml-live/scripts"         >>/root/.bash_history
 RUN echo "export GRML_FAI_CONFIG=/code/grml-live/etc/grml/fai"      >>/root/.bash_history