From 66b066aefb819e5d9810ef498ab46f51f15410ec Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 11 Oct 2017 17:39:09 +0100 Subject: [PATCH] netboot: Download nightly builds over HTTPS Signed-off-by: Michael Tremer --- webapp/handlers_boot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.3