From: Michael Tremer Date: Wed, 11 Oct 2017 16:39:09 +0000 (+0100) Subject: netboot: Download nightly builds over HTTPS X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=66b066aefb819e5d9810ef498ab46f51f15410ec;p=ipfire.org.git netboot: Download nightly builds over HTTPS Signed-off-by: Michael Tremer --- diff --git a/webapp/handlers_boot.py b/webapp/handlers_boot.py index f805c9c2..417c8281 100644 --- a/webapp/handlers_boot.py +++ b/webapp/handlers_boot.py @@ -119,13 +119,13 @@ class MenuCfgHandler(BootBaseHandler): return platform == "pcbios" def netboot_kernel_url(self, arch, platform): - return "http://nightly.ipfire.org/next/latest/%s/images/vmlinuz" % arch + return "https://nightly.ipfire.org/next/latest/%s/images/vmlinuz" % arch def netboot_initrd_url(self, arch, platform): - return "http://nightly.ipfire.org/next/latest/%s/images/instroot" % arch + return "https://nightly.ipfire.org/next/latest/%s/images/instroot" % arch def netboot_args(self, arch, platform): - return "installer.download-url=http://nightly.ipfire.org/next/latest/%s/images/installer.iso" % arch + return "installer.download-url=https://nightly.ipfire.org/next/latest/%s/images/installer.iso" % arch def is_netboot_capable(self): return True