From c8b6c24d6cba9b7a762f014e849d52d61450bab7 Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Thu, 26 May 2022 19:56:04 -0700 Subject: [PATCH] Removing compression (again) from initrd PXE --- etc/ipxe/default.ipxe | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/ipxe/default.ipxe b/etc/ipxe/default.ipxe index dc0fef07..279f2295 100644 --- a/etc/ipxe/default.ipxe +++ b/etc/ipxe/default.ipxe @@ -43,17 +43,17 @@ echo echo Image extract not supported in this iPXE, using standard initrd mode echo Downloading Container Image: -initrd --name container ${uri_base}&stage=container&compress=gz || goto reboot +initrd --name container ${uri_base}&stage=container || goto reboot echo Downloading System Overlay: -initrd --name system ${uri_base}&stage=system&compress=gz || goto reboot +initrd --name system ${uri_base}&stage=system || goto reboot echo Downloading Runtime Overlay: -initrd --name runtime ${uri_base}&stage=runtime&compress=gz || goto reboot +initrd --name runtime ${uri_base}&stage=runtime || goto reboot {{if ne .KernelOverride "" -}} echo Downloading Kernel Modules: -initrd --name kmods ${uri_base}&stage=kmods&compress=gz || goto reboot +initrd --name kmods ${uri_base}&stage=kmods || goto reboot {{- end}}