]> git.ipfire.org Git - ipfire.org.git/commitdiff
netboot: Download nightly builds over HTTPS
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 11 Oct 2017 16:39:09 +0000 (17:39 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 11 Oct 2017 16:39:09 +0000 (17:39 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
webapp/handlers_boot.py

index f805c9c2a07e917b4bd318fa677ad11922898880..417c8281275d922299e78674d1044fc3674d9ed7 100644 (file)
@@ -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