]> git.ipfire.org Git - ipfire.org.git/commitdiff
boot: Download boot images from boot.ipfire.org
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 29 Oct 2018 19:06:33 +0000 (19:06 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 29 Oct 2018 19:06:33 +0000 (19:06 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/backend/releases.py

index aae85ad6ae5d5e68d793d06a607f448d9d20a87e..491f9cf8ba7b625bd81f356e71247831ff7b397f 100644 (file)
@@ -398,18 +398,18 @@ class Release(Object):
                assert self.supports_platform(platform)
 
                if self.sname >= "ipfire-2.19-core100":
-                       return "https://downloads.ipfire.org/%s/images/%s/vmlinuz" % (self.path, arch)
+                       return "https://boot.ipfire.org/%s/images/%s/vmlinuz" % (self.path, arch)
 
-               return "https://downloads.ipfire.org/%s/images/vmlinuz" % self.path
+               return "https://boot.ipfire.org/%s/images/vmlinuz" % self.path
 
        def netboot_initrd_url(self, arch, platform):
                assert self.supports_arch(arch)
                assert self.supports_platform(platform)
 
                if self.sname >= "ipfire-2.19-core100":
-                       return "https://downloads.ipfire.org/%s/images/%s/instroot" % (self.path, arch)
+                       return "https://boot.ipfire.org/%s/images/%s/instroot" % (self.path, arch)
 
-               return "https://downloads.ipfire.org/%s/images/instroot" % self.path
+               return "https://boot.ipfire.org/%s/images/instroot" % self.path
 
        def netboot_args(self, arch, platform):
                return ""