From: Michael Tremer Date: Wed, 11 Oct 2017 16:59:20 +0000 (+0200) Subject: netboot: Download the new image over HTTP X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1164cc3d314d79a4658bb102faa94181e2a41ec9;p=ipfire.org.git netboot: Download the new image over HTTP Signed-off-by: Michael Tremer --- diff --git a/webapp/handlers_boot.py b/webapp/handlers_boot.py index 417c8281..635d3c07 100644 --- a/webapp/handlers_boot.py +++ b/webapp/handlers_boot.py @@ -68,7 +68,7 @@ class MenuGPXEHandler(BootBaseHandler): # Everything under version 1.0.0 should be # updated. - if version < "1.0.0": + if version < "1.0.0" or version == "1.0.0+": return self.serve_update() # This is an outdated git build @@ -93,10 +93,7 @@ class MenuGPXEHandler(BootBaseHandler): self.write("echo\necho Your copy of gPXE/iPXE is too old. ") self.write("Upgrade to avoid seeing this every boot!\n") - # Load CA certificates from here - self.write("set crosscert http://ca.ipxe.org/auto") - - self.write("chain https://mirror1.ipfire.org/releases/ipfire-boot/latest/ipxe.kpxe\n") + self.write("chain http://mirror1.ipfire.org/releases/ipfire-boot/latest/ipxe.kpxe\n") class PremenuCfgHandler(BootBaseHandler):