From 4383298a0be3a6a72db32db14a87b1537ca0ce26 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 7 Mar 2019 11:41:39 +0000 Subject: [PATCH] boot.ipfire.org: Serve nightly builds from boot.ipfire.org, too Signed-off-by: Michael Tremer --- src/web/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/boot.py b/src/web/boot.py index 232a104f..61bc322e 100644 --- a/src/web/boot.py +++ b/src/web/boot.py @@ -100,10 +100,10 @@ class MenuCfgHandler(BootBaseHandler): return platform == "pcbios" def netboot_kernel_url(self, arch, platform): - return "https://nightly.ipfire.org/next/latest/%s/images/vmlinuz" % arch + return "http://boot.ipfire.org/nightly/next/latest/%s/images/vmlinuz" % arch def netboot_initrd_url(self, arch, platform): - return "https://nightly.ipfire.org/next/latest/%s/images/instroot" % arch + return "http://boot.ipfire.org/nightly/next/latest/%s/images/instroot" % arch def netboot_args(self, arch, platform): return "installer.download-url=https://nightly.ipfire.org/next/latest/%s/images/installer.iso" % arch -- 2.47.3