From: Michael Tremer Date: Thu, 7 Mar 2019 11:41:39 +0000 (+0000) Subject: boot.ipfire.org: Serve nightly builds from boot.ipfire.org, too X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4383298a0be3a6a72db32db14a87b1537ca0ce26;p=ipfire.org.git boot.ipfire.org: Serve nightly builds from boot.ipfire.org, too Signed-off-by: Michael Tremer --- 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