From 1ddc2fd8d6d014367c6ab7b4ed3ddca972ef4bbb Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Sun, 14 May 2023 11:30:37 +0800 Subject: [PATCH] Move images back to images.sysdeploy.org - and get rid of https --- embed.ipxe | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/embed.ipxe b/embed.ipxe index fa1a282..4ed1ec9 100644 --- a/embed.ipxe +++ b/embed.ipxe @@ -203,8 +203,8 @@ ntp pool.ntp.org || goto error_handler # However, note that imgverify will fail if you refer to it as "/squashfs" # instead of "squashfs". -imgfetch https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/squashfs /squashfs || goto try_next_card -imgverify --signer images.sysdeploy.org squashfs https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/squashfs.sig || goto error_handler +imgfetch http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/squashfs /squashfs || goto try_next_card +imgverify --signer images.sysdeploy.org squashfs http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/squashfs.sig || goto error_handler # "--signer" validates against the subject common name field of the signing # certificate. That signing cert must have both the digital signature key @@ -214,11 +214,11 @@ imgverify --signer images.sysdeploy.org squashfs https://images2.sysdeploy.org/$ # make sure you pick a common name with a FQDN you control, even if you're # using a custom CA that you import during build. -initrd https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-initrd || goto try_next_card -imgverify --signer images.sysdeploy.org boot-initrd https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-initrd.sig || goto error_handler +initrd http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-initrd || goto try_next_card +imgverify --signer images.sysdeploy.org boot-initrd http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-initrd.sig || goto error_handler -kernel https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-kernel || goto try_next_card -imgverify --signer images.sysdeploy.org boot-kernel https://images2.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-kernel.sig || goto error_handler +kernel http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-kernel || goto try_next_card +imgverify --signer images.sysdeploy.org boot-kernel http://images.sysdeploy.org/${ubuntu-variant}/${arch-info}/boot-kernel.sig || goto error_handler echo ip-info ${ip-info}